标签: components vue.js
我开始学习Vue.js.关于将数据传递给chlid-component,我遇到了一团糟。数据未显示在子组件上。为什么?某处错误?
答案 0 :(得分:1)
正如here所述, HTML属性不区分大小写,因此在使用非字符串模板时,camelCased道具名称需要使用其kebab-case(连字符分隔)等效项以下内容:
<child v-bind:child-msg="parentMsg"></child>