下面 main.js 中的代码行将组件添加到我们的 Vue 项目中
app.component('fish-type', FishType)
我们如何将此组件添加到 App.vue 中?
<template> <h1>鱼</h1> @(25) </template>
<template> <h1>鱼</h1> <fish-type/> </template>
<template> <h1>鱼</h1> <fish-type></fish-type> </template>
<template> <h1>鱼</h1> <fish-type /> </template>