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.
17 lines
285 B
17 lines
285 B
|
6 days ago
|
import { createSSRApp } from "vue";
|
||
|
|
import { bootstrap } from "/@/cool/bootstrap";
|
||
|
|
import App from "./App.vue";
|
||
|
|
import { i18n } from "./locale";
|
||
|
|
import "./router";
|
||
|
|
|
||
|
|
export function createApp() {
|
||
|
|
const app = createSSRApp(App);
|
||
|
|
app.use(i18n);
|
||
|
|
|
||
|
|
bootstrap(app);
|
||
|
|
|
||
|
|
return {
|
||
|
|
app,
|
||
|
|
};
|
||
|
|
}
|