1234567891011121314151617181920212223242526272829303132333435363738 |
- // #ifndef VUE3
- import Vue from 'vue'
- import App from './App'
- Vue.config.productionTip = false
- // jwt解析
- import weappJwt from '@/common/weapp-jwt.js';
- Vue.prototype.$jwt = weappJwt;
- // requset请求
- import {
- requestBase,
- requestFile
- } from '@/common/api.js';
- Vue.prototype.$api = requestBase;
- Vue.prototype.$apifile = requestFile;
- // 配置文件
- import config from '@/config.js';
- Vue.prototype.$config = config;
- App.mpType = 'app'
- 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
|