12 lines
235 B
Vue
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>
|