mirror of
https://gitee.com/dromara/go-view.git
synced 2025-10-15 15:02:10 +08:00
17 lines
283 B
TypeScript
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
|
|
}
|
|
|