Files
vxe-table/packages/tools/vn.ts
2021-04-05 22:14:13 +08:00

4 lines
122 B
TypeScript

export function getOnName (type: string) {
return 'on' + type.substring(0, 1).toLocaleUpperCase() + type.substring(1)
}