mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
4 lines
122 B
TypeScript
4 lines
122 B
TypeScript
export function getOnName (type: string) {
|
|
return 'on' + type.substring(0, 1).toLocaleUpperCase() + type.substring(1)
|
|
}
|