fix: 打包编译eslint类型检查报错问题修复
This commit is contained in:
parent
0ae696c2e8
commit
574b969fdf
|
|
@ -17,8 +17,8 @@ import {
|
|||
onBeforeUnmount,
|
||||
getCurrentInstance,
|
||||
} from 'vue';
|
||||
import { TagView } from '@/types/store/tagsview';
|
||||
import useStore from '@/store';
|
||||
import { TagView } from '@/store/modules/types';
|
||||
|
||||
const tagAndTagSpacing = ref(4);
|
||||
const { proxy } = getCurrentInstance() as any;
|
||||
|
|
|
|||
|
|
@ -71,13 +71,13 @@ import {
|
|||
|
||||
import path from 'path-browserify';
|
||||
|
||||
import { RouteRecordRaw, useRoute, useRouter } from 'vue-router';
|
||||
import { TagView } from '@/types/store/tagsview';
|
||||
import { useRoute, useRouter } from 'vue-router';
|
||||
|
||||
import ScrollPane from './ScrollPane.vue';
|
||||
import SvgIcon from '@/components/SvgIcon/index.vue';
|
||||
import { generateTitle } from '@/utils/i18n';
|
||||
import useStore from '@/store';
|
||||
import { TagView } from '@/store/modules/types';
|
||||
|
||||
const { tagsView, permission } = useStore();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue