13 lines
258 B
Plaintext
13 lines
258 B
Plaintext
import App from './App.uvue'
|
|
|
|
import { createSSRApp } from 'vue'
|
|
import { bootstrapI18nCache, t } from '@/utils/i18n'
|
|
export function createApp() {
|
|
bootstrapI18nCache()
|
|
const app = createSSRApp(App)
|
|
app.config.globalProperties.$t = t
|
|
return {
|
|
app
|
|
}
|
|
}
|