Skip to content
This repository was archived by the owner on Sep 30, 2023. It is now read-only.

Commit 8694498

Browse files
committed
fix: lint error
1 parent c40ad19 commit 8694498

18 files changed

+156
-114
lines changed

auto-imports.d.ts

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Generated by 'unplugin-auto-import'
2+
// We suggest you to commit this file into source control
3+
declare global {
4+
const onActivated: typeof import('vue')['onActivated']
5+
const onBeforeMount: typeof import('vue')['onBeforeMount']
6+
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
7+
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
8+
const onMounted: typeof import('vue')['onMounted']
9+
const onUnmounted: typeof import('vue')['onUnmounted']
10+
const onUpdated: typeof import('vue')['onUpdated']
11+
const computed: typeof import('vue')['computed']
12+
const customRef: typeof import('vue')['customRef']
13+
const isReadonly: typeof import('vue')['isReadonly']
14+
const isRef: typeof import('vue')['isRef']
15+
const markRaw: typeof import('vue')['markRaw']
16+
const reactive: typeof import('vue')['reactive']
17+
const readonly: typeof import('vue')['readonly']
18+
const ref: typeof import('vue')['ref']
19+
const shallowReactive: typeof import('vue')['shallowReactive']
20+
const shallowReadonly: typeof import('vue')['shallowReadonly']
21+
const shallowRef: typeof import('vue')['shallowRef']
22+
const toRaw: typeof import('vue')['toRaw']
23+
const toRef: typeof import('vue')['toRef']
24+
const toRefs: typeof import('vue')['toRefs']
25+
const unref: typeof import('vue')['unref']
26+
const watch: typeof import('vue')['watch']
27+
const watchEffect: typeof import('vue')['watchEffect']
28+
const defineComponent: typeof import('vue')['defineComponent']
29+
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
30+
const h: typeof import('vue')['h']
31+
const inject: typeof import('vue')['inject']
32+
const nextTick: typeof import('vue')['nextTick']
33+
const provide: typeof import('vue')['provide']
34+
const useCssModule: typeof import('vue')['useCssModule']
35+
const createApp: typeof import('vue')['createApp']
36+
const triggerRef: typeof import('vue')['triggerRef']
37+
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
38+
const onDeactivated: typeof import('vue')['onDeactivated']
39+
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
40+
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
41+
const onRenderTracked: typeof import('vue')['onRenderTracked']
42+
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
43+
const useRouter: typeof import('vue-router')['useRouter']
44+
const useRoute: typeof import('vue-router')['useRoute']
45+
}
46+
export {}

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,21 @@
2121
"unplugin-vue-components": "^0.14.11",
2222
"vee-validate": "^4.4.10",
2323
"vue": "^3.2.8",
24-
"vue-global-api": "^0.4.1",
2524
"vue-router": "^4.0.11",
2625
"yup": "^0.32.9"
2726
},
2827
"devDependencies": {
29-
"@hannoeru/eslint-config": "^0.2.4",
28+
"@hannoeru/eslint-config": "^0.2.7",
3029
"@iconify/json": "^1.1.397",
3130
"@openapitools/openapi-generator-cli": "^2.4.1",
3231
"@types/autosize": "^4.0.0",
3332
"@types/node": "^16.7.10",
3433
"@vitejs/plugin-vue": "^1.6.0",
3534
"@vue/compiler-sfc": "^3.2.8",
35+
"@vueuse/shared": "^6.1.0",
3636
"eslint": "^7.32.0",
3737
"typescript": "^4.4.2",
38+
"unplugin-auto-import": "^0.4.1",
3839
"vite": "^2.5.3",
3940
"vite-plugin-pages": "^0.18.0",
4041
"vite-plugin-windicss": "^1.3.0",

0 commit comments

Comments
 (0)