12345678910111213141516171819202122232425262728293031 |
- // #ifndef VUE3
- import Vue from 'vue'
- import App from './App'
- import http from 'components/request.js'
- Vue.prototype.$http = http
- import https from 'components/requesttoken111.js'
- Vue.prototype.$https = https
- import share from 'components/share.js'
- // const puppeteer = require('puppeteer');
- // import puppeteer from 'puppeteer'
- Vue.mixin(share)
- Vue.config.productionTip = false
- 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
|