feat(settings): Add independent plugin to put loading system configuration in the lifecycle hook "app:created".

This commit is contained in:
Rafi
2023-04-18 10:29:09 +08:00
parent 9fe7943152
commit 76b865646c
8 changed files with 72 additions and 79 deletions

6
plugins/initApiKey.js Normal file
View File

@@ -0,0 +1,6 @@
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.hook('app:created', async () => {
const apiKey = useApiKey()
apiKey.value = getStoredApiKey()
})
})