feat: 初始化工程

This commit is contained in:
2026-09-07 19:41:38 +08:00
commit cdb1f80464
25 changed files with 10845 additions and 0 deletions

20
src/App.vue Normal file
View File

@@ -0,0 +1,20 @@
<script setup lang="ts">
import { onLaunch, onShow, onHide } from "@dcloudio/uni-app";
onLaunch(() => {
console.log("App Launch");
});
onShow(() => {
console.log("App Show");
});
onHide(() => {
console.log("App Hide");
});
</script>
<style>
page,
.wd-root-portal {
--wot-primary-5: #7c3aed;
--wot-primary-6: #6d28d9;
--wot-primary-7: #5b21b6;
}
</style>