12345678910111213141516171819202122 |
- /* eslint-disable */
- // @ts-nocheck
- // Generated by unplugin-vue-components
- // Read more: https://github.com/vuejs/core/pull/3399
- /* prettier-ignore */
- // declare module '@vue/runtime-core' {
- // export interface GlobalComponents {
- // VStage: typeof import('./src/components/alide-item.vue')['default']
- // }
- // }
- // // src/types/global-components.d.ts
- import { defineComponent } from 'vue'
- declare module '@vue/runtime-core' {
- export interface GlobalComponents {
- VStage: typeof defineComponent
- AnotherGlobalComponent: typeof defineComponent
- // 添加更多的全局组件类型
- }
- }
|