2022-07-21 10:33:40 +08:00

17 lines
283 B
TypeScript

import { mapToOptions } from '@/utils';
export enum TextCommonEventEnum {
TEST = 'test'
}
export const eventList = mapToOptions(new Map([
[TextCommonEventEnum.TEST, '测试内置方法'],
]))
export const TextConfig = {
key: 'TextCommon',
title: '文字',
eventList
}