import { h } from 'vue'; import { ElTag } from 'element-plus'; export const columns = [ { title: '数据表名称', dataIndex: 'tableName', }, { title: '数据表描述', dataIndex: 'tableComment', }, { title: '数据表引擎', dataIndex: 'engine', }, { title: '数据表行数', dataIndex: 'tableRows', }, { title: '数据表长度', dataIndex: 'dataLength', }, { title: '数据表自增索引', dataIndex: 'autoIncrement', }, { title: '数据表编码', dataIndex: 'tableCollation', }, { title: '创建时间', dataIndex: 'createTime', width: 180, }, { title:"操作", fixed:'right', dataIndex: 'action', key: 'action', width: 130, } ];