table不同的行,相同的列渲染不同的组件,如图1:第一行渲染selece,第二行渲染input render:(h,params)=>{ if(params.index === 0){ //以params.index为条件渲染 return h('div',[ h('Input',{ props:{ }, style:{}, on:{ 'on-change':(e)=>{ console.log(e.target.value) } } }) ]) }; if(params.index ===…