多维表格
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.
 
 
 
 
 
 

34 lines
759 B

import { defineNuxtPlugin, useApi, useGlobal } from '#imports'
import { loadLocaleMessages, setI18nLanguage } from '~/plugins/a.i18n'
/**
* 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 () => {
const state = useGlobal()
const { api } = useApi()
const currentLang = state.lang.value
/** force load initial locale messages */
await loadLocaleMessages(currentLang)
/** set i18n locale to stored language */
await setI18nLanguage(currentLang)
try {
state.appInfo.value = await api.utils.appInfo()
} catch (e) {
console.error(e)
}
})