feat: 登录Dialog

This commit is contained in:
lanyeeee
2025-08-06 05:49:49 +08:00
parent 003c50ba13
commit 04ed15a196
7 changed files with 251 additions and 4 deletions
+3 -2
View File
@@ -1,9 +1,10 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
import { Config } from './bindings.ts'
import { Config, UserInfo } from './bindings.ts'
export const useStore = defineStore('store', () => {
const config = ref<Config>()
const userInfo = ref<UserInfo>()
return { config }
return { config, userInfo }
})