123456789101112131415161718 |
- import '@vue/runtime-core'
- export {}
- declare module '@vue/runtime-core' {
- export interface GlobalComponents {
- ElButton: typeof import('element-plus/es')['ElButton']
- HelloWorld: typeof import('./src/components/HelloWorld.vue')['default']
- RouterLink: typeof import('vue-router')['RouterLink']
- RouterView: typeof import('vue-router')['RouterView']
- Screen: typeof import('./src/components/screen.vue')['default']
- }
- }
|