31 lines
477 B
JavaScript
31 lines
477 B
JavaScript
|
import App from "./App";
|
||
|
import store from "@/store/index.js";
|
||
|
import "dayjs/locale/zh-cn";
|
||
|
// #ifndef VUE3
|
||
|
import Vue from "vue";
|
||
|
// #endif
|
||
|
// #ifdef VUE3
|
||
|
import { createSSRApp } from "vue";
|
||
|
// #endif
|
||
|
|
||
|
// #ifndef VUE3
|
||
|
Vue.config.productionTip = false;
|
||
|
App.mpType = "app";
|
||
|
const app = new Vue({
|
||
|
...App,
|
||
|
store,
|
||
|
});
|
||
|
app.$mount();
|
||
|
// #endif
|
||
|
|
||
|
// #ifdef VUE3
|
||
|
export function createApp() {
|
||
|
const app = createSSRApp(App);
|
||
|
app.use(store);
|
||
|
return {
|
||
|
app,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
// #endif
|