uni-app-wx-study/shims-uni.d.ts

15 lines
343 B
TypeScript
Raw Permalink Normal View History

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