Files
youlai-app/src/App.vue
2026-04-14 14:46:48 +08:00

12 lines
235 B
Vue

<script setup lang="ts">
import { onLaunch, onShow } from "@dcloudio/uni-app";
import { useThemeStore } from "@/store";
onLaunch(() => {
const themeStore = useThemeStore();
themeStore.initTheme();
});
onShow(() => {});
</script>