iview tabel里面的input框数据双向绑定实现排序功能
作者:互联网
很多时候 babel里面需要放置input输入框 然后手动改变input框里面的值 在结合后台接口 实现排序功能
{
title: "排序",
key: "sort",
align: "center",
minWidth: 100,
render:(h,params)=>{
return h('Input', {
style:{
width:'60px',
},
props:{
type:'text',
value:this.data1[params.index].sort
},
on: {
input: (event) => {
this.data1[params.index].sort =event
}
}
})
}
},
标签:sort,index,排序功能,tabel,params,input,event 来源: https://blog.csdn.net/xy19950125/article/details/91044794