1、render中不能直接使用v-model2、使用下面的方法,贴出了代码片段: h('Input',{ props:{ placeholder:'请输入', value: this.dataMain.currentRow.type }, on:{ input: (value)=>{ this.dataMain.currentRow.type =value; } } }) ]);
1、render中不能直接使用v-model
2、使用下面的方法,贴出了代码片段: