diff --git a/.gitignore b/.gitignore index 903e706..757e16c 100644 --- a/.gitignore +++ b/.gitignore @@ -25,7 +25,7 @@ stats.html *.sln *.sw? +/src/typings/components.d.ts pnpm-lock.yaml package-lock.json yarn.lock -/src/typings/components.d.ts diff --git a/mock/module/list.ts b/mock/module/list.ts index 3d02a96..33a44d1 100644 --- a/mock/module/list.ts +++ b/mock/module/list.ts @@ -1,7 +1,7 @@ -import Mock from 'mockjs'; +import { mock } from 'mockjs'; import { resultSuccess } from '../utils'; -const userList = Mock.mock({ +const userList = mock({ 'list|20': [ { id: '@id', diff --git a/src/types/components.d.ts b/src/types/components.d.ts deleted file mode 100644 index 87dc09f..0000000 --- a/src/types/components.d.ts +++ /dev/null @@ -1,18 +0,0 @@ -// generated by unplugin-vue-components -// We suggest you to commit this file into source control -// Read more: https://github.com/vuejs/core/pull/3399 -import '@vue/runtime-core'; - -export {}; - -declare module '@vue/runtime-core' { - export interface GlobalComponents { - EIcon: typeof import('./../components/custom/EIcon.vue')['default']; - ErrorTip: typeof import('./../components/common/ErrorTip.vue')['default']; - NaiveProvider: typeof import('./../components/common/NaiveProvider.vue')['default']; - Pagination: typeof import('./../components/custom/Pagination.vue')['default']; - RouterLink: typeof import('vue-router')['RouterLink']; - RouterView: typeof import('vue-router')['RouterView']; - SvgIcon: typeof import('./../components/custom/SvgIcon.vue')['default']; - } -}