VUE 入门
VUE 指令
VUE 方法
VUE 计算属性
VUE 观察者
VUE 扩展
VUE 组件
VUE 插槽
VUE 引用
VUE 生命周期钩子
VUE 提供/注入
VUE 路由
VUE 动画
VUE 构建

Menu
×
×
正确

练习:

main.js中的下面一行将一个组件添加到我们的Vue项目中:

app.component('fish-type', FishType)

我们如何将这个组件添加到App.vue中?

<template> <h1>Fish</h1> <fish-type/> </template>
<template> <h1>Fish</h1> <fish-type></fish-type> </template>
<template> <h1>Fish</h1> <fish-type /> </template>

不正确

点击 此处 重试

正确

下一题 ❯
<template>
  <h1>Fish</h1>
  
</template>







×

重置分数?