123456789101112131415161718 |
- import '@vue/runtime-core'
- export {}
- declare module '@vue/runtime-core' {
- export interface GlobalComponents {
- Holle: typeof import('./src/components/Holle.vue')['default']
- RouterLink: typeof import('vue-router')['RouterLink']
- RouterView: typeof import('vue-router')['RouterView']
- VanButton: typeof import('vant/es')['Button']
- VanIcon: typeof import('vant/es')['Icon']
- VanTabbar: typeof import('vant/es')['Tabbar']
- VanTabbarItem: typeof import('vant/es')['TabbarItem']
- }
- }
|