forked from gymcoding/vue3-posts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponents.d.ts
20 lines (18 loc) · 934 Bytes
/
components.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// generated by unplugin-vue-components
// We suggest you to commit this file into source control
// Read more: https://github.com/vuejs/vue-next/pull/3399
import '@vue/runtime-core'
declare module '@vue/runtime-core' {
export interface GlobalComponents {
AppAlert: typeof import('./src/components/app/AppAlert.vue')['default']
AppCard: typeof import('./src/components/app/AppCard.vue')['default']
AppError: typeof import('./src/components/app/AppError.vue')['default']
AppGrid: typeof import('./src/components/app/AppGrid.vue')['default']
AppLoading: typeof import('./src/components/app/AppLoading.vue')['default']
AppModal: typeof import('./src/components/app/AppModal.vue')['default']
AppPagination: typeof import('./src/components/app/AppPagination.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
}
}
export {}