import { h } from 'vue'; export const columns = [ { title:'ID', dataIndex: 'id', }, { title: '角色名称', dataIndex: 'name', }, { title: '角色编码', dataIndex: 'code', }, { title: '说明', dataIndex: 'note', }, { title: '创建人', dataIndex: 'createUser', }, { title: '创建时间', dataIndex: 'createTime', }, { title: '操作', fixed:'right', dataIndex: 'action', key: 'action', width: 300, }, ];