12345678910111213141516171819202122232425262728293031323334353637 |
- console.log(11111111111111111111)
- console.log(156651325)
- import App from './App'
- import store from './store/store.js'
- import Vue from 'vue'
- // #ifndef VUE3
- import './uni.promisify.adaptor'
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- ...App,
- store
- })
- app.$mount()
- // #endif
- //请求的根路径
- let $http={
- // baseUrl:'https://69b89r4952.yicp.fun/',
- baseUrl:'http://118.89.54.252:8714/',
- testToken:"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJhdWQiOiIxLUFETUlOIiwiZXhwIjoxNzM5MDk4Njc4fQ.AY9lfdw6dySsEd7TCCS9POx69OyH3Jpm1at0xOq6H8o"
- }
- uni.$http=$http
- // console.log(1111111111111111111111111)
- // #ifdef VUE3
- console.log(uni.$http,"uni.$http");
- import { createSSRApp } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
- // #endif
|