wujingjing
2025-02-25 4fb206d45bed4d8839172ddd75c3569ac8dbdb75
1
2
3
4
5
6
7
8
9
10
import { MultiChatType } from '../../model/types';
import Select from './Select.vue';
import InputSelect from './InputSelect.vue';
import TimeRange from './TimeRange.vue';
export const multiChatTypeMapCom = {
    [MultiChatType.Select]: Select,
    [MultiChatType.InputSelect]: InputSelect,
    [MultiChatType.TimeRange]: TimeRange,
};