Files
FiDA_Front/src/views/login/index.vue

14 lines
295 B
Vue
Raw Normal View History

2026-02-02 14:12:23 +08:00
<template>
<div class="index"></div>
</template>
<script setup lang="ts">
import { computed } from 'vue'
import { useGlobalStore } from '@/stores'
const globalStore = useGlobalStore()
const loading = computed(() => globalStore.state.loading)
</script>
<style lang="less" scoped>
</style>