import { ref, reactive,h} from "vue"
<proTable :columns="tableColumns" ref='refsTable' :showCondition="true">
const tableColumns = [
{
prop: "username",
label: "Account",
showOverflowTooltip: true,
slot: 'account',
width: '220',
},
{
prop: "description",
label: "Nick Name",
showOverflowTooltip: true,
slot: 'description',
// render: ({ row }: any) =>{
// const props = { class: ['button', 'is-outlined'], style: { color: "#1972F5" }, id:'1234', onClick: submitForm};
// return h("span", props, );
// }
},