Files
anxinyan/user-app/src/App.vue
wushumin 9aac78b8da first
2026-05-11 15:28:27 +08:00

18 lines
382 B
Vue

<script setup lang="ts">
import { onLaunch, onShow, onHide } from "@dcloudio/uni-app";
import { ensureAuthenticatedPageAccess } from "./utils/auth";
onLaunch(() => {
ensureAuthenticatedPageAccess();
});
onShow(() => {
ensureAuthenticatedPageAccess();
});
onHide(() => {
// noop
});
</script>
<style lang="scss">
@use "./styles/tokens.scss";
@use "./styles/app.scss";
</style>