12345678910111213141516171819202122232425262728 |
- import App from './App'
- // #ifndef VUE3
- import Vue from 'vue'
- import './uni.promisify.adaptor'
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
- // #endif
- // #ifdef VUE3
- import { createSSRApp } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
- // #endif
- import {$App,$Api,$Config,$Qrcode} from 'static/js/index.js';
- Vue.prototype.$app = $App;
- Vue.prototype.$api = $Api;
- Vue.prototype.$config = $Config;
- Vue.prototype.$qrcode = $Qrcode;
|