iview中父組件的數據經過props屬性傳值給子組件

父組件傳值:this

render: (h, params) => { return h('a', { attr:{ }, props: { 'v-model':'test', 'key': 'value',
'parentWindow':this }, style: { marginRight: '5px' } }, '查看'))

 

子組件使用:spa

export default{ name: '子組件', props: ['v-model','key','parentWindow'], data(){ return this.v-model + ' ' + this.key + ' ' + this.parentWindow;//必須加this關鍵字
 } }
相關文章
相關標籤/搜索