下面 main.js 中的行會將一個元件新增到我們的 Vue 專案中
app.component('fish-type', FishType)
我們如何將此元件新增到 App.vue 中?
<template> <h1>Fish</h1> @(25) </template>
<template> <h1>Fish</h1> <fish-type/> </template>
<template> <h1>Fish</h1> <fish-type></fish-type> </template>
<template> <h1>Fish</h1> <fish-type /> </template>