feat: 完成 #3 登录页面和认证功能

This commit is contained in:
root
2026-03-09 19:43:05 +08:00
parent 135d2f92b2
commit 0894833b8f
5 changed files with 53 additions and 12 deletions
+1 -2
View File
@@ -1,14 +1,13 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
import router from './router'
import App from './App.vue'
import { pinia } from './stores'
import './style.css'
const app = createApp(App)
const pinia = createPinia()
// 注册所有 Element Plus 图标
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {