15 lines
343 B
TypeScript
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
|
|
}
|
|
}
|