18 lines
382 B
Vue
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>
|