feat(desktop): 增加原生 Vault 写入与属性导入

This commit is contained in:
2026-09-07 16:52:30 +08:00
parent 7fffbcd55a
commit afb76dc325
40 changed files with 6870 additions and 26 deletions
+2
View File
@@ -10,6 +10,7 @@ import { useSettingsStore } from './stores/settings'
import { watch } from 'vue'
import { appLocale } from './i18n'
import { updateDocumentTitle } from './router'
import { installDesktopLifecycle } from './services/platform/lifecycle'
const app = createApp(App)
const pinia = createPinia()
@@ -27,3 +28,4 @@ watch(() => settingsStore.spellCheck, (enabled) => {
}, { immediate: true })
app.mount('#app')
void installDesktopLifecycle()