From 03043192ddf00f9a36b7454799a9152cd1b50a0b Mon Sep 17 00:00:00 2001
From: admin <344137771@qq.com>
Date: Tue, 06 Jan 2026 11:13:45 +0800
Subject: [PATCH] 1
---
src/App.vue | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/App.vue b/src/App.vue
index 9a76087..155528d 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -15,10 +15,12 @@
import fxFooter from "@/components/fx-footer/index.vue";
import { useRoute } from "vue-router";
import { setStorage, getStorage } from "@/utils/index.js";
-import { SET_THEME } from "@/store/types.store";
+import { SET_THEME, SET_COIN_LIST } from "@/store/types.store";
import { themeStore } from "@/store/theme";
+import { useQuotesStore } from '@/store/quotes.store';
+const quotesStore = useQuotesStore()
const route = useRoute();
const thStore = themeStore();
const geturlkey = (name) => {
@@ -48,8 +50,8 @@
setStorage('timezone', res.showTimeZone)
})
}
-onMounted(() => {
-
+onMounted(async () => {
+ await quotesStore[SET_COIN_LIST]()
})
</script>
<style lang="scss">
--
Gitblit v1.9.3