hanbaoshan
2020-04-15 72e13f676e7a78d5491819f0f68f6fd6c440d2aa
1
2
3
4
5
6
7
8
9
10
11
12
13
import Vue from 'vue'
 
Vue.mixin({
    methods: {
        tableNameRender(h, {
            row,
            col
        }) {
            console.log(row)
            return h('view', row.name)
        }
    }
})