关于使用props传递数据的Vue.js

时间:2017-01-13 09:19:37

标签: components vue.js

enter image description here

enter image description here

enter image description here

我开始学习Vue.js.关于将数据传递给chlid-component,我遇到了一团糟。数据未显示在子组件上。为什么?某处错误?

1 个答案:

答案 0 :(得分:1)

正如here所述, HTML属性不区分大小写,因此在使用非字符串模板时,camelCased道具名称需要使用其kebab-case(连字符分隔)等效项以下内容:

<child v-bind:child-msg="parentMsg"></child>