1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import App from './App'
- import Vue from 'vue'
- import '@/pc'
- import uView from "uview-ui";
- Vue.use(uView);
- import request from '@/https/http.js'
- Vue.prototype.$http = request;
- import check from '@/util/util.js'
- Vue.prototype.$check = check
- var qqmapsdk = require('@/libs/qqmap-wx-jssdk.min.js');
- Vue.prototype.myAmapFun = new qqmapsdk({
- key: 'O7NBZ-PTTCG-OEPQF-I6MTS-YEKCJ-OCFVO'
- });
- import { baseUrl } from '@/https/url.js'
- Vue.prototype.$httpUrl = baseUrl;
- Vue.prototype.$assets_id = 1759144209292295;
- import minxin from '@/util/mixin.js'
- Vue.mixin(minxin)
- App.mpType = 'app'
- Vue.config.productionTip = false
- const app = new Vue({
- ...App
- })
- app.$mount()
- import { createSSRApp } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
|