1. 程式人生 > >vue-prop父元件向子元件進行傳值

vue-prop父元件向子元件進行傳值

vue-prop是父元件向子元件進行傳遞資料時使用的。
例如子元件為
child.vue

 template: '<div>msg: {{msg}}</div>'
 props: ['msg'],

我們在子元件裡規定了一個數據名字叫msg
父元件裡面寫

<child msg="hello, vue.js!"></child>

這樣我們就可以在子元件裡看到msg:hello, vue.js!