主页框架

This commit is contained in:
李志鹏
2026-02-02 14:12:23 +08:00
parent 721cf2066a
commit 6f8091a5c5
5 changed files with 120 additions and 12 deletions

13
src/views/login/index.vue Normal file
View File

@@ -0,0 +1,13 @@
<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>