y-admin-ui 6.2.1 → 6.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ import type { App } from 'vue';
3
3
  import * as svg from '@element-plus/icons-vue';
4
4
 
5
5
  // 引入组件
6
- const SvgIcon = defineAsyncComponent(() => import('./../y-svg-icon/index.vue'));
6
+ const YSvgIcon = defineAsyncComponent(() => import('./../y-svg-icon/index.vue'));
7
7
 
8
8
  /**
9
9
  * 导出全局注册 element plus svg 图标
@@ -15,7 +15,7 @@ export function elSvg(app: App) {
15
15
  for (const i in icons) {
16
16
  app.component(`ele-${icons[i].name}`, icons[i]);
17
17
  }
18
- app.component('SvgIcon', SvgIcon);
18
+ app.component('YSvgIcon', YSvgIcon);
19
19
  }
20
20
 
21
21
  /**