You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
290 B

/**
* 表格列配置
*/
import type { VxeGridProps } from '#/adapter/vxe-table';
export const columns: VxeGridProps['columns'] = [
{% for f in fields %}
{
// 列标题
title: '{{f.comment}}',
// 对应字段
field: '{{f.name}}',
// 宽度
width: 150,
},
{% endfor %}
];