wms-elevue/src/views/data/config/columns.ts
2024-08-27 19:32:36 +08:00

25 lines
320 B
TypeScript

import { h } from 'vue';
import { ElTag } from 'element-plus';
export const columns = [
{
type: 'selection',
},
{
label: 'ID',
prop: 'id'
},
{
label: '配置名称',
prop: 'name',
},
{
label: '配置编码',
prop: 'code',
},
{
label: '排序',
prop: 'sort',
}
];