data(){
return {
//表格数据
tableData:[],
}
},
watch:{
tableData(val){
console.log(val)
this.doLayout()
}
},
methods:{
//表格错位问题
doLayout(){
this.$nextTick(()=>{
this.$refs.table.doLayout()
})
},
网友评论