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.
jiansheng/main.js

27 lines
464 B

4 months ago
// #ifndef VUE3
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
App.mpType = 'app'
import api from '@/api/index.js'
Vue.prototype.$api = api
4 months ago
Vue.prototype.ymurl = 'https://bodybuilding.bsdong.cn'
4 months ago
const app = new Vue({
...App
})
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
import App from './App.vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif