14 lines
295 B
Vue
14 lines
295 B
Vue
|
|
<template>
|
||
|
|
<div class="login"></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>
|