iView中table表格中使用select選框和下拉選單
阿新 • • 發佈:2019-01-12
{ title: '一級指標', key: 'age', render: (h, params) => { return h('Select', { props:{ value: params.row.applyResult, }, style: { width:"100%" }, on: { 'on-change':(event) => { console.log(event) console.log(this.data2[params.index].age) } }, }, [ h('Option',{ props: { value: '1' } },'選擇1'), h('Option',{ props: { value: '2' } },'選擇2') ]); }, },