10 lines
353 B
TypeScript
10 lines
353 B
TypeScript
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 [<span class={`el-tag el-tag--${type} el-tag--plain`}>{cellValue}</span>]
|
|
}
|
|
}
|