qa-deu-tv/main.js

31 lines
477 B
JavaScript
Raw Normal View History

2024-12-13 08:38:32 +08:00
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