22 lines
308 B
Plaintext
22 lines
308 B
Plaintext
import { h } from 'vue';
|
|
import { ElTag } from 'element-plus';
|
|
|
|
export const columns = [
|
|
{
|
|
title: 'ID',
|
|
dataIndex: 'id'
|
|
},
|
|
{
|
|
title: '配置名称',
|
|
dataIndex: 'name',
|
|
},
|
|
{
|
|
title: '配置编码',
|
|
dataIndex: 'code',
|
|
},
|
|
{
|
|
title: '排序',
|
|
dataIndex: 'sort',
|
|
}
|
|
];
|