Files
sign-mp/src/App.vue
2026-09-07 19:41:38 +08:00

21 lines
366 B
Vue

<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>