1
QYF-GitLab1
2024-07-24 835f3363757f6b5703c9385a6d60feff5681f93c
1
2
3
4
5
6
7
8
9
10
11
/// <reference types='@dcloudio/types' />
import Vue from 'vue'
declare module "vue/types/options" {
  type Hooks = App.AppInstance & Page.PageInstance;
  interface ComponentOptions<V extends Vue> extends Hooks {
    /**
     * 组件类型
     */
    mpType?: string;
  }
}