import { getConfigTypeTableColumn, getAttirubuteTableColumn, } from '../utils/columns' import { getTimeTableColumn } from '@/utils/common/tableColumn' export default { created () { this.columns = [ { title: this.$t('system.text_101'), field: 'name', showOverflow: 'ellipsis', minWidth: 100, slots: { default: ({ row }) => { return [ this.handleOpenSidepage(row) }>{ row.name } , ] }, }, }, getConfigTypeTableColumn(), getAttirubuteTableColumn({ vm: this }), getTimeTableColumn(), ] }, }