wms-elevue/src/views/data/config/columns.ts
2024-12-18 11:14:32 +08:00

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,
},
];