mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
587 B
28 lines
587 B
import { defineNuxtPlugin, useApi, useGlobal } from '#imports' |
|
|
|
/** |
|
* Initialize global state and watches for changes |
|
* |
|
* @example |
|
* ```js |
|
* import { useNuxtApp } from '#app' |
|
* |
|
* const { $state } = useNuxtApp() |
|
* |
|
* console.log($state.lang.value) // 'en' |
|
* ``` |
|
*/ |
|
export default defineNuxtPlugin(async (nuxtApp) => { |
|
const state = useGlobal() |
|
|
|
const { api } = useApi() |
|
|
|
/** set i18n locale to stored language */ |
|
nuxtApp.vueApp.i18n.locale.value = state.lang.value |
|
|
|
try { |
|
state.appInfo.value = await api.utils.appInfo() |
|
} catch (e) { |
|
console.error(e) |
|
} |
|
})
|
|
|