更新模板

This commit is contained in:
2026-01-21 01:37:34 +08:00
parent b7be8c51bf
commit c5c73828bd
83 changed files with 8687 additions and 1235 deletions

6
types/uni-app.d.ts vendored
View File

@@ -8,6 +8,12 @@ declare module "@/uni_modules/cool-open-web" {
export function openWeb(url: string): boolean;
}
declare module "*.uvue" {
import { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}
declare type Theme = "light" | "dark";
declare interface Uni {