You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
589 B
JavaScript

2 years ago
import App from './App'
// #ifndef VUE3
import Vue from 'vue'
// vuex
import store from './store'
import validate from '@/common/js/utils/ys-validate.js'
import util from '@/common/js/utils/utils.js'
2 years ago
import '@/common/js/utils/navigateTo.js'
2 years ago
Vue.prototype.$store = store
Vue.prototype.$validate = validate
Vue.prototype.$util = util;
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
1 year ago
...App
2 years ago
})
app.$mount();
2 years ago
// #endif
// #ifdef VUE3
1 year ago
import {
createSSRApp
} from 'vue'
2 years ago
export function createApp() {
1 year ago
const app = createSSRApp(App)
return {
app
}
2 years ago
}
1 year ago
// #endif