create-lik-app 1.0.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +8 -7
- package/dist/index.mjs +31 -31
- package/package.json +6 -7
- package/templates/.gitignore +1 -0
- package/templates/template-react/env/.env +0 -0
- package/templates/template-react/env/.env.development +1 -0
- package/templates/template-react/env/.env.production +1 -0
- package/templates/template-react/eslint.config.mjs +1 -1
- package/templates/template-react/package.json +1 -0
- package/templates/template-react/plugins/index.ts +24 -0
- package/templates/template-react/src/views/Home/index.tsx +7 -1
- package/templates/template-react/tsconfig.app.json +1 -1
- package/templates/template-react/tsconfig.node.json +6 -1
- package/templates/template-react/types/auto-imports.d.ts +47 -0
- package/templates/template-react/types/vite-env.d.ts +9 -0
- package/templates/template-react/vite.config.ts +5 -15
- package/templates/template-vue/.husky/commit-msg +1 -0
- package/templates/template-vue/.husky/lintstagedrc.cjs +15 -0
- package/templates/template-vue/.husky/pre-commit +10 -0
- package/templates/template-vue/.prettierrc.json +6 -0
- package/templates/template-vue/.vscode/extensions.json +8 -0
- package/templates/template-vue/README.md +39 -0
- package/templates/template-vue/_gitignore +30 -0
- package/templates/template-vue/commitlint.config.mjs +33 -0
- package/templates/template-vue/env/.env +0 -0
- package/templates/template-vue/env/.env.development +0 -0
- package/templates/template-vue/env/.env.production +0 -0
- package/templates/template-vue/env/.env.test +1 -0
- package/templates/template-vue/eslint.config.js +24 -0
- package/templates/template-vue/index.html +13 -0
- package/templates/template-vue/package.json +45 -0
- package/templates/template-vue/plugins/index.ts +28 -0
- package/templates/template-vue/public/lic.svg +1263 -0
- package/templates/template-vue/src/App.vue +87 -0
- package/templates/template-vue/src/assets/base.css +86 -0
- package/templates/template-vue/src/assets/logo.svg +1 -0
- package/templates/template-vue/src/assets/main.css +35 -0
- package/templates/template-vue/src/components/HelloWorld.vue +43 -0
- package/templates/template-vue/src/components/TheWelcome.vue +121 -0
- package/templates/template-vue/src/components/WelcomeItem.vue +87 -0
- package/templates/template-vue/src/components/icons/IconCommunity.vue +12 -0
- package/templates/template-vue/src/components/icons/IconDocumentation.vue +12 -0
- package/templates/template-vue/src/components/icons/IconEcosystem.vue +12 -0
- package/templates/template-vue/src/components/icons/IconSupport.vue +12 -0
- package/templates/template-vue/src/components/icons/IconTooling.vue +19 -0
- package/templates/template-vue/src/main.ts +14 -0
- package/templates/template-vue/src/router/index.ts +23 -0
- package/templates/template-vue/src/stores/index.ts +8 -0
- package/templates/template-vue/src/stores/module/counter.ts +12 -0
- package/templates/template-vue/src/views/AboutView.vue +15 -0
- package/templates/template-vue/src/views/HomeView.vue +7 -0
- package/templates/template-vue/tsconfig.app.json +13 -0
- package/templates/template-vue/tsconfig.json +11 -0
- package/templates/template-vue/tsconfig.node.json +19 -0
- package/templates/template-vue/types/auto-imports.d.ts +309 -0
- package/templates/template-vue/types/components.d.ts +21 -0
- package/templates/template-vue/types/env.d.ts +9 -0
- package/templates/template-vue/vite.config.ts +16 -0
- package/templates/template-react/src/vite-env.d.ts +0 -1
@@ -0,0 +1,309 @@
|
|
1
|
+
/* eslint-disable */
|
2
|
+
/* prettier-ignore */
|
3
|
+
// @ts-nocheck
|
4
|
+
// noinspection JSUnusedGlobalSymbols
|
5
|
+
// Generated by unplugin-auto-import
|
6
|
+
// biome-ignore lint: disable
|
7
|
+
export {}
|
8
|
+
declare global {
|
9
|
+
const EffectScope: typeof import('vue')['EffectScope']
|
10
|
+
const acceptHMRUpdate: typeof import('pinia')['acceptHMRUpdate']
|
11
|
+
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
|
12
|
+
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
|
13
|
+
const computed: typeof import('vue')['computed']
|
14
|
+
const computedAsync: typeof import('@vueuse/core')['computedAsync']
|
15
|
+
const computedEager: typeof import('@vueuse/core')['computedEager']
|
16
|
+
const computedInject: typeof import('@vueuse/core')['computedInject']
|
17
|
+
const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
|
18
|
+
const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
|
19
|
+
const controlledRef: typeof import('@vueuse/core')['controlledRef']
|
20
|
+
const createApp: typeof import('vue')['createApp']
|
21
|
+
const createEventHook: typeof import('@vueuse/core')['createEventHook']
|
22
|
+
const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
|
23
|
+
const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
|
24
|
+
const createPinia: typeof import('pinia')['createPinia']
|
25
|
+
const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
|
26
|
+
const createReusableTemplate: typeof import('@vueuse/core')['createReusableTemplate']
|
27
|
+
const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
|
28
|
+
const createTemplatePromise: typeof import('@vueuse/core')['createTemplatePromise']
|
29
|
+
const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
|
30
|
+
const customRef: typeof import('vue')['customRef']
|
31
|
+
const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
|
32
|
+
const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
|
33
|
+
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
34
|
+
const defineComponent: typeof import('vue')['defineComponent']
|
35
|
+
const defineStore: typeof import('pinia')['defineStore']
|
36
|
+
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
|
37
|
+
const effectScope: typeof import('vue')['effectScope']
|
38
|
+
const extendRef: typeof import('@vueuse/core')['extendRef']
|
39
|
+
const getActivePinia: typeof import('pinia')['getActivePinia']
|
40
|
+
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
41
|
+
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
42
|
+
const h: typeof import('vue')['h']
|
43
|
+
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
|
44
|
+
const inject: typeof import('vue')['inject']
|
45
|
+
const injectLocal: typeof import('@vueuse/core')['injectLocal']
|
46
|
+
const isDefined: typeof import('@vueuse/core')['isDefined']
|
47
|
+
const isProxy: typeof import('vue')['isProxy']
|
48
|
+
const isReactive: typeof import('vue')['isReactive']
|
49
|
+
const isReadonly: typeof import('vue')['isReadonly']
|
50
|
+
const isRef: typeof import('vue')['isRef']
|
51
|
+
const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
|
52
|
+
const mapActions: typeof import('pinia')['mapActions']
|
53
|
+
const mapGetters: typeof import('pinia')['mapGetters']
|
54
|
+
const mapState: typeof import('pinia')['mapState']
|
55
|
+
const mapStores: typeof import('pinia')['mapStores']
|
56
|
+
const mapWritableState: typeof import('pinia')['mapWritableState']
|
57
|
+
const markRaw: typeof import('vue')['markRaw']
|
58
|
+
const nextTick: typeof import('vue')['nextTick']
|
59
|
+
const onActivated: typeof import('vue')['onActivated']
|
60
|
+
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
61
|
+
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
|
62
|
+
const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
|
63
|
+
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
|
64
|
+
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
|
65
|
+
const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
|
66
|
+
const onDeactivated: typeof import('vue')['onDeactivated']
|
67
|
+
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
|
68
|
+
const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
|
69
|
+
const onLongPress: typeof import('@vueuse/core')['onLongPress']
|
70
|
+
const onMounted: typeof import('vue')['onMounted']
|
71
|
+
const onRenderTracked: typeof import('vue')['onRenderTracked']
|
72
|
+
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
|
73
|
+
const onScopeDispose: typeof import('vue')['onScopeDispose']
|
74
|
+
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
|
75
|
+
const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
|
76
|
+
const onUnmounted: typeof import('vue')['onUnmounted']
|
77
|
+
const onUpdated: typeof import('vue')['onUpdated']
|
78
|
+
const onWatcherCleanup: typeof import('vue')['onWatcherCleanup']
|
79
|
+
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
|
80
|
+
const provide: typeof import('vue')['provide']
|
81
|
+
const provideLocal: typeof import('@vueuse/core')['provideLocal']
|
82
|
+
const reactify: typeof import('@vueuse/core')['reactify']
|
83
|
+
const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
|
84
|
+
const reactive: typeof import('vue')['reactive']
|
85
|
+
const reactiveComputed: typeof import('@vueuse/core')['reactiveComputed']
|
86
|
+
const reactiveOmit: typeof import('@vueuse/core')['reactiveOmit']
|
87
|
+
const reactivePick: typeof import('@vueuse/core')['reactivePick']
|
88
|
+
const readonly: typeof import('vue')['readonly']
|
89
|
+
const ref: typeof import('vue')['ref']
|
90
|
+
const refAutoReset: typeof import('@vueuse/core')['refAutoReset']
|
91
|
+
const refDebounced: typeof import('@vueuse/core')['refDebounced']
|
92
|
+
const refDefault: typeof import('@vueuse/core')['refDefault']
|
93
|
+
const refThrottled: typeof import('@vueuse/core')['refThrottled']
|
94
|
+
const refWithControl: typeof import('@vueuse/core')['refWithControl']
|
95
|
+
const resolveComponent: typeof import('vue')['resolveComponent']
|
96
|
+
const resolveRef: typeof import('@vueuse/core')['resolveRef']
|
97
|
+
const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
|
98
|
+
const setActivePinia: typeof import('pinia')['setActivePinia']
|
99
|
+
const setMapStoreSuffix: typeof import('pinia')['setMapStoreSuffix']
|
100
|
+
const shallowReactive: typeof import('vue')['shallowReactive']
|
101
|
+
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
102
|
+
const shallowRef: typeof import('vue')['shallowRef']
|
103
|
+
const storeToRefs: typeof import('pinia')['storeToRefs']
|
104
|
+
const syncRef: typeof import('@vueuse/core')['syncRef']
|
105
|
+
const syncRefs: typeof import('@vueuse/core')['syncRefs']
|
106
|
+
const templateRef: typeof import('@vueuse/core')['templateRef']
|
107
|
+
const throttledRef: typeof import('@vueuse/core')['throttledRef']
|
108
|
+
const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
|
109
|
+
const toRaw: typeof import('vue')['toRaw']
|
110
|
+
const toReactive: typeof import('@vueuse/core')['toReactive']
|
111
|
+
const toRef: typeof import('vue')['toRef']
|
112
|
+
const toRefs: typeof import('vue')['toRefs']
|
113
|
+
const toValue: typeof import('vue')['toValue']
|
114
|
+
const triggerRef: typeof import('vue')['triggerRef']
|
115
|
+
const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
|
116
|
+
const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
|
117
|
+
const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted']
|
118
|
+
const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
|
119
|
+
const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
|
120
|
+
const unref: typeof import('vue')['unref']
|
121
|
+
const unrefElement: typeof import('@vueuse/core')['unrefElement']
|
122
|
+
const until: typeof import('@vueuse/core')['until']
|
123
|
+
const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
|
124
|
+
const useAnimate: typeof import('@vueuse/core')['useAnimate']
|
125
|
+
const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference']
|
126
|
+
const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
|
127
|
+
const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
|
128
|
+
const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
|
129
|
+
const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
|
130
|
+
const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast']
|
131
|
+
const useArrayIncludes: typeof import('@vueuse/core')['useArrayIncludes']
|
132
|
+
const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
|
133
|
+
const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
|
134
|
+
const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
|
135
|
+
const useArraySome: typeof import('@vueuse/core')['useArraySome']
|
136
|
+
const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
|
137
|
+
const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
|
138
|
+
const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
|
139
|
+
const useAttrs: typeof import('vue')['useAttrs']
|
140
|
+
const useBase64: typeof import('@vueuse/core')['useBase64']
|
141
|
+
const useBattery: typeof import('@vueuse/core')['useBattery']
|
142
|
+
const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
|
143
|
+
const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
|
144
|
+
const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
|
145
|
+
const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
|
146
|
+
const useCached: typeof import('@vueuse/core')['useCached']
|
147
|
+
const useClipboard: typeof import('@vueuse/core')['useClipboard']
|
148
|
+
const useClipboardItems: typeof import('@vueuse/core')['useClipboardItems']
|
149
|
+
const useCloned: typeof import('@vueuse/core')['useCloned']
|
150
|
+
const useColorMode: typeof import('@vueuse/core')['useColorMode']
|
151
|
+
const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
|
152
|
+
const useCounter: typeof import('@vueuse/core')['useCounter']
|
153
|
+
const useCssModule: typeof import('vue')['useCssModule']
|
154
|
+
const useCssVar: typeof import('@vueuse/core')['useCssVar']
|
155
|
+
const useCssVars: typeof import('vue')['useCssVars']
|
156
|
+
const useCurrentElement: typeof import('@vueuse/core')['useCurrentElement']
|
157
|
+
const useCycleList: typeof import('@vueuse/core')['useCycleList']
|
158
|
+
const useDark: typeof import('@vueuse/core')['useDark']
|
159
|
+
const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
|
160
|
+
const useDebounce: typeof import('@vueuse/core')['useDebounce']
|
161
|
+
const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
|
162
|
+
const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
|
163
|
+
const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
|
164
|
+
const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
|
165
|
+
const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
|
166
|
+
const useDevicesList: typeof import('@vueuse/core')['useDevicesList']
|
167
|
+
const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
|
168
|
+
const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
|
169
|
+
const useDraggable: typeof import('@vueuse/core')['useDraggable']
|
170
|
+
const useDropZone: typeof import('@vueuse/core')['useDropZone']
|
171
|
+
const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
|
172
|
+
const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
|
173
|
+
const useElementHover: typeof import('@vueuse/core')['useElementHover']
|
174
|
+
const useElementSize: typeof import('@vueuse/core')['useElementSize']
|
175
|
+
const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
|
176
|
+
const useEventBus: typeof import('@vueuse/core')['useEventBus']
|
177
|
+
const useEventListener: typeof import('@vueuse/core')['useEventListener']
|
178
|
+
const useEventSource: typeof import('@vueuse/core')['useEventSource']
|
179
|
+
const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
|
180
|
+
const useFavicon: typeof import('@vueuse/core')['useFavicon']
|
181
|
+
const useFetch: typeof import('@vueuse/core')['useFetch']
|
182
|
+
const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
|
183
|
+
const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
|
184
|
+
const useFocus: typeof import('@vueuse/core')['useFocus']
|
185
|
+
const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
|
186
|
+
const useFps: typeof import('@vueuse/core')['useFps']
|
187
|
+
const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
|
188
|
+
const useGamepad: typeof import('@vueuse/core')['useGamepad']
|
189
|
+
const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
|
190
|
+
const useId: typeof import('vue')['useId']
|
191
|
+
const useIdle: typeof import('@vueuse/core')['useIdle']
|
192
|
+
const useImage: typeof import('@vueuse/core')['useImage']
|
193
|
+
const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
|
194
|
+
const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver']
|
195
|
+
const useInterval: typeof import('@vueuse/core')['useInterval']
|
196
|
+
const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn']
|
197
|
+
const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier']
|
198
|
+
const useLastChanged: typeof import('@vueuse/core')['useLastChanged']
|
199
|
+
const useLink: typeof import('vue-router')['useLink']
|
200
|
+
const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
|
201
|
+
const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
|
202
|
+
const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory']
|
203
|
+
const useMediaControls: typeof import('@vueuse/core')['useMediaControls']
|
204
|
+
const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery']
|
205
|
+
const useMemoize: typeof import('@vueuse/core')['useMemoize']
|
206
|
+
const useMemory: typeof import('@vueuse/core')['useMemory']
|
207
|
+
const useModel: typeof import('vue')['useModel']
|
208
|
+
const useMounted: typeof import('@vueuse/core')['useMounted']
|
209
|
+
const useMouse: typeof import('@vueuse/core')['useMouse']
|
210
|
+
const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement']
|
211
|
+
const useMousePressed: typeof import('@vueuse/core')['useMousePressed']
|
212
|
+
const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
|
213
|
+
const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
|
214
|
+
const useNetwork: typeof import('@vueuse/core')['useNetwork']
|
215
|
+
const useNow: typeof import('@vueuse/core')['useNow']
|
216
|
+
const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
|
217
|
+
const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
|
218
|
+
const useOnline: typeof import('@vueuse/core')['useOnline']
|
219
|
+
const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
|
220
|
+
const useParallax: typeof import('@vueuse/core')['useParallax']
|
221
|
+
const useParentElement: typeof import('@vueuse/core')['useParentElement']
|
222
|
+
const usePerformanceObserver: typeof import('@vueuse/core')['usePerformanceObserver']
|
223
|
+
const usePermission: typeof import('@vueuse/core')['usePermission']
|
224
|
+
const usePointer: typeof import('@vueuse/core')['usePointer']
|
225
|
+
const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
|
226
|
+
const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
|
227
|
+
const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
|
228
|
+
const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
|
229
|
+
const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
|
230
|
+
const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
|
231
|
+
const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
|
232
|
+
const usePrevious: typeof import('@vueuse/core')['usePrevious']
|
233
|
+
const useRafFn: typeof import('@vueuse/core')['useRafFn']
|
234
|
+
const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
|
235
|
+
const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
|
236
|
+
const useRoute: typeof import('vue-router')['useRoute']
|
237
|
+
const useRouter: typeof import('vue-router')['useRouter']
|
238
|
+
const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
|
239
|
+
const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
|
240
|
+
const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
|
241
|
+
const useScroll: typeof import('@vueuse/core')['useScroll']
|
242
|
+
const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
|
243
|
+
const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
|
244
|
+
const useShare: typeof import('@vueuse/core')['useShare']
|
245
|
+
const useSlots: typeof import('vue')['useSlots']
|
246
|
+
const useSorted: typeof import('@vueuse/core')['useSorted']
|
247
|
+
const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
|
248
|
+
const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
|
249
|
+
const useStepper: typeof import('@vueuse/core')['useStepper']
|
250
|
+
const useStorage: typeof import('@vueuse/core')['useStorage']
|
251
|
+
const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
|
252
|
+
const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
|
253
|
+
const useSupported: typeof import('@vueuse/core')['useSupported']
|
254
|
+
const useSwipe: typeof import('@vueuse/core')['useSwipe']
|
255
|
+
const useTemplateRef: typeof import('vue')['useTemplateRef']
|
256
|
+
const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
|
257
|
+
const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
|
258
|
+
const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
|
259
|
+
const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
|
260
|
+
const useThrottle: typeof import('@vueuse/core')['useThrottle']
|
261
|
+
const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
|
262
|
+
const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
|
263
|
+
const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
|
264
|
+
const useTimeout: typeof import('@vueuse/core')['useTimeout']
|
265
|
+
const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
|
266
|
+
const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll']
|
267
|
+
const useTimestamp: typeof import('@vueuse/core')['useTimestamp']
|
268
|
+
const useTitle: typeof import('@vueuse/core')['useTitle']
|
269
|
+
const useToNumber: typeof import('@vueuse/core')['useToNumber']
|
270
|
+
const useToString: typeof import('@vueuse/core')['useToString']
|
271
|
+
const useToggle: typeof import('@vueuse/core')['useToggle']
|
272
|
+
const useTransition: typeof import('@vueuse/core')['useTransition']
|
273
|
+
const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
|
274
|
+
const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
|
275
|
+
const useVModel: typeof import('@vueuse/core')['useVModel']
|
276
|
+
const useVModels: typeof import('@vueuse/core')['useVModels']
|
277
|
+
const useVibrate: typeof import('@vueuse/core')['useVibrate']
|
278
|
+
const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
|
279
|
+
const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
|
280
|
+
const useWebNotification: typeof import('@vueuse/core')['useWebNotification']
|
281
|
+
const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
|
282
|
+
const useWebWorker: typeof import('@vueuse/core')['useWebWorker']
|
283
|
+
const useWebWorkerFn: typeof import('@vueuse/core')['useWebWorkerFn']
|
284
|
+
const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus']
|
285
|
+
const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
|
286
|
+
const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
|
287
|
+
const watch: typeof import('vue')['watch']
|
288
|
+
const watchArray: typeof import('@vueuse/core')['watchArray']
|
289
|
+
const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
|
290
|
+
const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
|
291
|
+
const watchDeep: typeof import('@vueuse/core')['watchDeep']
|
292
|
+
const watchEffect: typeof import('vue')['watchEffect']
|
293
|
+
const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
|
294
|
+
const watchImmediate: typeof import('@vueuse/core')['watchImmediate']
|
295
|
+
const watchOnce: typeof import('@vueuse/core')['watchOnce']
|
296
|
+
const watchPausable: typeof import('@vueuse/core')['watchPausable']
|
297
|
+
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
298
|
+
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
299
|
+
const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
|
300
|
+
const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
|
301
|
+
const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
|
302
|
+
const whenever: typeof import('@vueuse/core')['whenever']
|
303
|
+
}
|
304
|
+
// for type re-export
|
305
|
+
declare global {
|
306
|
+
// @ts-ignore
|
307
|
+
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
|
308
|
+
import('vue')
|
309
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/* eslint-disable */
|
2
|
+
// @ts-nocheck
|
3
|
+
// Generated by unplugin-vue-components
|
4
|
+
// Read more: https://github.com/vuejs/core/pull/3399
|
5
|
+
export {}
|
6
|
+
|
7
|
+
/* prettier-ignore */
|
8
|
+
declare module 'vue' {
|
9
|
+
export interface GlobalComponents {
|
10
|
+
HelloWorld: typeof import('./../src/components/HelloWorld.vue')['default']
|
11
|
+
IconsIconCommunity: typeof import('./../src/components/icons/IconCommunity.vue')['default']
|
12
|
+
IconsIconDocumentation: typeof import('./../src/components/icons/IconDocumentation.vue')['default']
|
13
|
+
IconsIconEcosystem: typeof import('./../src/components/icons/IconEcosystem.vue')['default']
|
14
|
+
IconsIconSupport: typeof import('./../src/components/icons/IconSupport.vue')['default']
|
15
|
+
IconsIconTooling: typeof import('./../src/components/icons/IconTooling.vue')['default']
|
16
|
+
RouterLink: typeof import('vue-router')['RouterLink']
|
17
|
+
RouterView: typeof import('vue-router')['RouterView']
|
18
|
+
TheWelcome: typeof import('./../src/components/TheWelcome.vue')['default']
|
19
|
+
WelcomeItem: typeof import('./../src/components/WelcomeItem.vue')['default']
|
20
|
+
}
|
21
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { fileURLToPath, URL } from 'node:url'
|
2
|
+
import { defineConfig } from 'vite'
|
3
|
+
import { createPlugins } from './plugins'
|
4
|
+
|
5
|
+
export default defineConfig({
|
6
|
+
envDir: './env',
|
7
|
+
plugins: createPlugins(),
|
8
|
+
resolve: {
|
9
|
+
alias: {
|
10
|
+
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
11
|
+
},
|
12
|
+
},
|
13
|
+
server: {
|
14
|
+
port: 8220,
|
15
|
+
},
|
16
|
+
})
|
@@ -1 +0,0 @@
|
|
1
|
-
/// <reference types="vite/client" />
|