mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-17 19:06:39 +08:00
11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
/// <reference types='@dcloudio/types' />
|
|
import 'vue'
|
|
|
|
declare module '@vue/runtime-core' {
|
|
type Hooks = App.AppInstance & Page.PageInstance;
|
|
|
|
interface ComponentCustomOptions extends Hooks {
|
|
|
|
}
|
|
}
|