feat: 日志Dialog

This commit is contained in:
lanyeeee
2025-08-03 05:56:45 +08:00
parent 7b9fe63799
commit 44a118605f
10 changed files with 389 additions and 175 deletions
+5 -1
View File
@@ -1,5 +1,9 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
import { Config } from './bindings.ts'
export const useStore = defineStore('store', () => {
return {}
const config = ref<Config>()
return { config }
})