vue-prop父组件向子组件进行传值
vue-prop是父组件向子组件进行传递数据时使用的。例如子组件为child.vue template: '<div>msg: {{msg}}</div>'props: ['msg'],我们在子组件里规定了一个数据名字叫msg父组件里面写<child msg="hello, vue.js!"></child>这样我们就可以在子组件里看到msg:hello, vue.js!
·
vue-prop是父组件向子组件进行传递数据时使用的。
例如子组件为
child.vue
template: '<div>msg: {{msg}}</div>'
props: ['msg'],
我们在子组件里规定了一个数据名字叫msg
父组件里面写
<child msg="hello, vue.js!"></child>
这样我们就可以在子组件里看到msg:hello, vue.js!
更多推荐
已为社区贡献6条内容
所有评论(0)