25 lines
343 B
TypeScript
25 lines
343 B
TypeScript
import { h } from 'vue';
|
|
import { ElTag } from 'element-plus';
|
|
|
|
export const columns = [
|
|
{
|
|
type: 'selection',
|
|
},
|
|
{
|
|
label: '配置名称',
|
|
prop: 'name',
|
|
},
|
|
{
|
|
label: '排序',
|
|
prop: 'sort',
|
|
},
|
|
{
|
|
label: '创建人',
|
|
prop: 'createUser',
|
|
},
|
|
{
|
|
label: '创建时间',
|
|
prop: 'createTime',
|
|
},
|
|
];
|