main.js 中的以下行向我们的 Vue 项目添加了一个组件:
app.component('fish-type', FishType)
How can we add this component to 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>