2020-12-23 22:27:46 +08:00
|
|
|
import Icon from './src/index.vue';
|
2021-03-05 23:12:01 +08:00
|
|
|
import SvgIcon from './src/SvgIcon.vue';
|
2021-03-02 20:54:15 +08:00
|
|
|
// import IconPicker from './src/IconPicker.vue';
|
|
|
|
|
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
|
|
|
|
|
|
|
|
|
|
const IconPicker = createAsyncComponent(() => import('./src/IconPicker.vue'));
|
2021-03-01 23:11:12 +08:00
|
|
|
|
2021-03-05 23:12:01 +08:00
|
|
|
export { Icon, IconPicker, SvgIcon };
|
2020-12-23 22:27:46 +08:00
|
|
|
|
|
|
|
|
export default Icon;
|