This commit is contained in:
2026-02-04 11:27:45 +08:00
parent 1b17eb1dd2
commit b526c249e8
3 changed files with 7 additions and 3 deletions

View File

@@ -8,12 +8,10 @@
import { computed } from 'vue'
import { useGlobalStore } from '@/stores'
const globalStore = useGlobalStore()
const loading = computed(() => globalStore.state.loading)
const loading = computed(() => globalStore.state.loading || globalStore.state.view_loading)
</script>
<style lang="less">
#app {
font-size: 1.6rem;
}