uni-app-wx-study/shims-uni.d.ts
2024-10-18 20:24:56 +08:00

15 lines
343 B
TypeScript

/// <reference types='@dcloudio/types' />
import 'vue'
import TabView from "@/components/tab-view/index.vue";
declare module '@vue/runtime-core' {
type Hooks = App.AppInstance & Page.PageInstance;
interface ComponentCustomOptions extends Hooks {
}
export interface GlobalComponents {
TabView: typeof TabView
}
}