14 lines
152 B
JavaScript
Raw Permalink Normal View History

2025-03-10 13:49:13 +08:00
import Vue from 'vue'
Vue.mixin({
methods: {
tableNameRender(h, {
row,
col
}) {
console.log(row)
return h('view', row.name)
}
}
})