18 lines
257 B
Plaintext
18 lines
257 B
Plaintext
import { h } from 'vue';
|
|
import { ElTag } from 'element-plus';
|
|
|
|
export const columns = [
|
|
{
|
|
title: 'ID',
|
|
dataIndex: 'id',
|
|
},
|
|
{
|
|
title: '字典名称',
|
|
dataIndex: 'name',
|
|
},
|
|
{
|
|
title: '字典编码',
|
|
dataIndex: 'code',
|
|
},
|
|
];
|