当前位置:主页 > 网页前端 > vue >
时间:2021-03-14 09:49:07 | 栏目:vue | 点击:次
vue-prop是父组件向子组件进行传递数据时使用的。
例如子组件为
child.vue
template: '<div>msg: {{msg}}</div>' props: ['msg'],
我们在子组件里规定了一个数据名字叫msg
父组件里面写
<child msg="hello, vue.js!"></child>
这样我们就可以在子组件里看到msg:hello, vue.js!