This commit is contained in:
2026-01-16 00:41:19 +00:00
parent 0dcbd340e6
commit d70478a4b0
39 changed files with 26925 additions and 0 deletions

11
my-uniapp-cli/shims-uni.d.ts vendored Normal file
View File

@@ -0,0 +1,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;
}
}