fix(mock): 修复mock引入错误

This commit is contained in:
chen.home 2022-08-27 23:52:59 +08:00
parent 2a3fb4c64b
commit f124c90726
3 changed files with 3 additions and 21 deletions

2
.gitignore vendored
View File

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

View File

@ -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',

View File

@ -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'];
}
}