import type { VxeColumnPropTypes } from "vxe-table/types/column" export const RoleColumnSlots: VxeColumnPropTypes.Slots = { default: ({ row, column }) => { const cellValue = row[column.field] const type = cellValue === "admin" ? "primary" : "warning" return [{cellValue}] } }