diff --git a/src/App.tsx b/src/App.tsx index 3365e51b..ad25fe1f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,21 +1,13 @@ import RayGlobalProvider from '@/components/RayGlobalProvider/index' -import { useSetting } from '@/store' import { RouterView } from 'vue-router' const App = defineComponent({ name: 'App', setup() { - const settingStore = useSetting() const { height: windowHeight } = useWindowSize() - const { settingState } = $(storeToRefs(settingStore)) - - // const naiveTheme = computed(() => - // settingState.themeValue ? darkTheme : undefined, - // ) return { windowHeight, - // naiveTheme, } }, render() { diff --git a/src/components/RayTransitionComponent/index.vue b/src/components/RayTransitionComponent/index.vue index 49567c76..a3d80be3 100644 --- a/src/components/RayTransitionComponent/index.vue +++ b/src/components/RayTransitionComponent/index.vue @@ -1,21 +1,21 @@