引入二级表格页面
import submenu from './subCate.vue'//二级表格页面
一级表格表头设置
columns: [
{
type: 'expand',
width: 60,
align: 'center',
render: (h, params) => {
return this.$createElement(submenu, {
ref: 'child',
props: {
row: params.row//向二级表格传递参数
}
})
}
},
]
二级表格接收参数
props: {
row: Object
},