| 1234567891011121314151617181920212223242526 |
- <template>
- <view class="app-container">
- <slot />
- </view>
- </template>
- <script setup>
- import { onLaunch } from '@dcloudio/uni-app'
- import { useUserStore } from '@/stores/user'
- const userStore = useUserStore()
- onLaunch(() => {
- if (userStore.isLoggedIn) {
- userStore.fetchProfile().catch(() => {})
- }
- })
- </script>
- <style>
- .app-container {
- min-height: 100vh;
- background: #0c0a1a;
- color: #ffffff;
- }
- </style>
|