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.
47 lines
969 B
47 lines
969 B
import App from './App' |
|
import store from './store' |
|
import { request, request1 } from "./util/request.js"; |
|
import { calcMom, calcYoy } from "./common/util.js"; |
|
|
|
// #ifndef VUE3 |
|
import Vue from 'vue' |
|
Vue.config.productionTip = false |
|
Vue.prototype.$store = store |
|
Vue.prototype.$adpid = "1111111111" |
|
Vue.prototype.$backgroundAudioData = { |
|
playing: false, |
|
playTime: 0, |
|
formatedPlayTime: '00:00:00' |
|
} |
|
App.mpType = 'app' |
|
const app = new Vue({ |
|
store, |
|
...App |
|
}) |
|
app.$mount() |
|
// #endif |
|
|
|
//挂在request |
|
Vue.prototype.$request = request; |
|
Vue.prototype.$request1 = request1; |
|
Vue.prototype.$calcMom = calcMom; |
|
Vue.prototype.$calcYoy = calcYoy; |
|
|
|
// #ifdef VUE3 |
|
import { |
|
createSSRApp |
|
} from 'vue' |
|
export function createApp() { |
|
const app = createSSRApp(App) |
|
app.use(store) |
|
app.config.globalProperties.$adpid = "1111111111" |
|
app.config.globalProperties.$backgroundAudioData = { |
|
playing: false, |
|
playTime: 0, |
|
formatedPlayTime: '00:00:00' |
|
} |
|
return { |
|
app |
|
} |
|
} |
|
// #endif
|
|
|