mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
27 lines
654 B
Vue
27 lines
654 B
Vue
<script setup lang="ts">
|
|
import { onLaunch, onShow, onHide } from '@dcloudio/uni-app';
|
|
import { useAuthStore } from '@/state/modules/auth';
|
|
import { setupInterceptors } from '@/utils/interceptors';
|
|
import { useAppStore } from '@/state/modules/app';
|
|
|
|
onLaunch(() => {
|
|
console.log('App Launch');
|
|
setupInterceptors();
|
|
const appStore = useAppStore();
|
|
appStore.initialize();
|
|
});
|
|
onShow(() => {
|
|
const authStore = useAuthStore();
|
|
authStore.initToken();
|
|
console.log('App Show');
|
|
});
|
|
onHide(() => {
|
|
console.log('App Hide');
|
|
});
|
|
</script>
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #f2f2f2;
|
|
}
|
|
</style>
|