You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
556 B
TypeScript

import { svgfile_config_center } from './svg-file';
import { IComponentImport, IConfigCenter } from './types';
import customSvgText from '@/components/webtopo-svgedit/components/custom-svg/custom-svg-text/index.vue';
import { vue_config_center } from './vue';
import { ElButton, ElTag } from 'element-plus';
export const configCenter: IConfigCenter = {
svg: svgfile_config_center,
vue: vue_config_center
};
export const ComponentImport: IComponentImport = {
'custom-svg-text': customSvgText,
'el-button': ElButton,
'el-tag': ElTag
};