2024-10-16 15:55:34 +08:00
|
|
|
/// <reference types='@dcloudio/types' />
|
|
|
|
import 'vue'
|
2024-10-18 20:24:56 +08:00
|
|
|
import TabView from "@/components/tab-view/index.vue";
|
2024-10-16 15:55:34 +08:00
|
|
|
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-16 15:55:34 +08:00
|
|
|
|
2024-10-18 20:24:56 +08:00
|
|
|
}
|
2024-10-16 15:55:34 +08:00
|
|
|
|
2024-10-18 20:24:56 +08:00
|
|
|
export interface GlobalComponents {
|
|
|
|
TabView: typeof TabView
|
|
|
|
}
|
2024-10-16 15:55:34 +08:00
|
|
|
}
|