父組件傳值: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關鍵字 } }