24 lines
337 B
TypeScript
24 lines
337 B
TypeScript
import { h } from 'vue';
|
|
import { ElTag } from 'element-plus';
|
|
|
|
export const columns = [
|
|
{
|
|
type: 'selection',
|
|
},
|
|
{
|
|
label: '配置名称',
|
|
prop: 'name',
|
|
minWidth: 100,
|
|
},
|
|
{
|
|
label: '配置编码',
|
|
prop: 'code',
|
|
minWidth: 100,
|
|
},
|
|
{
|
|
label: '排序',
|
|
prop: 'sort',
|
|
minWidth: 100,
|
|
},
|
|
];
|