fix: 打包编译eslint类型检查报错问题修复

This commit is contained in:
haoxr 2022-11-08 23:08:36 +08:00
parent 0ae696c2e8
commit 574b969fdf
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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();