12 lines
234 B
Plaintext
12 lines
234 B
Plaintext
import App from './App.uvue'
|
|
import { createSSRApp } from 'vue'
|
|
import i18n from './i18n/index.uts' // 使用智能目录处理配置
|
|
|
|
export function createApp() {
|
|
const app = createSSRApp(App)
|
|
app.use(i18n)
|
|
|
|
return {
|
|
app
|
|
}
|
|
} |