标签:mod col render 组件 this return cti v-model function
父组件:
render: (h, params) => { return h(‘a‘, { attr:{ }, props: { ‘v-model‘:‘test‘, ‘key‘: ‘value‘ }, style: { marginRight: ‘5px‘ } }, ‘查看‘))
子组件:
props: [‘v-model‘,‘key‘] render: function(h){ return this.v-model + ‘ ‘ + this.key;//必须加this关键字 }
标签:mod col render 组件 this return cti v-model function
原文地址:https://www.cnblogs.com/nizuimeiabc1/p/12173689.html