[抖火申请支付]

This commit is contained in:
2023-05-15 13:33:00 +08:00
commit c503bff7d2
294 changed files with 25144 additions and 0 deletions

38
main.js Normal file
View File

@@ -0,0 +1,38 @@
import App from './App'
// #ifndef VUE3
import Vue from 'vue';
import { router, RouterMount } from './router';
import webUni from '@/static/uni.webview.js'
import store from './store';
import uView from "uview-ui";
Vue.use(uView);
Vue.use(router)
//微信支付
Vue.prototype.$wx = require('jweixin-module')
Vue.prototype.$store = store
Vue.prototype.$webUni = webUni
Vue.config.ignoredElements = [...Vue.config.ignoredElements, 'wx-open-launch-weapp']
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
// #endif
// #ifdef H5
RouterMount(app,router,'#app')
// #endif
// #ifdef VUE3
import {
createSSRApp
} from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif