@@ -86,7 +86,7 @@ const props = defineProps({
const emit = defineEmits(['update:modelValue', 'get', 'clear']);
// 引入组件
-const IconList = defineAsyncComponent(() => import('/@/components/iconSelector/list.vue'));
+const IconList = defineAsyncComponent(() => import('/src/components/IconSelector/list.vue'));
// 定义变量内容
const inputWidthRef = ref<RefType>();
@@ -9,7 +9,7 @@ import {Local} from '/@/utils/storage';
// @ts-ignore
-const SvgIcon = defineAsyncComponent(() => import('/@/components/svgIcon/index.vue'));
+const SvgIcon = defineAsyncComponent(() => import('/@/components/SvgIcon/index.vue'));
/**
* 导出全局注册 element plus svg 图标
* @param app vue 实例
@@ -174,7 +174,7 @@ import { FormInstance } from 'element-plus';
import { addMenu, getMenuList } from '/@/api/system/menu';
-const IconSelector = defineAsyncComponent(() => import('/@/components/iconSelector/index.vue'));
+const IconSelector = defineAsyncComponent(() => import('/src/components/IconSelector/index.vue'));
// 定义子组件向父组件传值/事件
const emit = defineEmits(['updateList']);
@@ -174,7 +174,7 @@ import { auth } from '/@/utils/authFunction';
import { updateMenu, getMenuList, getMenuById } from '/@/api/system/menu';