为了账号安全,请及时绑定邮箱和手机立即绑定

父组件向子组件传值遇到bug


需求:想要实现 父组件向子组件传递数据,子组件显示数据。

问题: 调试的正常,但是子组件显示不出来,浏览器错误提示如下:

[Vue warn]: Unknown custom element: <Child> - did you register the component correctly? For recursive components, make sure to provide the "name" option. 

(found in <App> at C:\vue\base\src\App.vue)


源码:

子组件代码

<template>

<!-- 子组件显示父传递过来的属性值-->
   <div>
       {{ message }}
   </div>
</template>

<script>
   export default {
       data() {
       },
       props: ['message'],
   }
</script>


父组件

<template>
   <div id="app">
       <h1>111</h1>
       <Child message="222"></Child>
   </div>
</template>

<script>
   import Child from './component/Child.vue'

   export default {
       name: 'app',
       data () {
           return {
               msg: 'Welcome to Your Vue.js App'
           }
       },
       component: {
           Child
       }
   }
</script>

正在回答

2 回答

component加个s再试试

0 回复 有任何疑惑可以回复我~
#1

oufei 提问者

非常感谢!感谢你
2017-03-18 回复 有任何疑惑可以回复我~

是 components  http://vuejs.org/v2/api/#components

提示里已经说明白了 did you register the component correctly? 

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
vue.js入门基础
  • 参与学习       209716    人
  • 解答问题       677    个

本门为vuejs入门教程,详细的讲解加实战,可以帮你进入vuejs的大门

进入课程

父组件向子组件传值遇到bug

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信