123456789101112131415161718192021222324252627282930313233343536 |
- import Vue from 'vue'
- import App from './App'
- import https from './util/api.js'
- Vue.config.productionTip = false
- /* 使用uView组件库 */
- // import uView from "uview-ui";
- // Vue.use(uView);
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
- import NavBar from "@/components/navbar/navbar.vue"
- Vue.component('navbar',NavBar)
- Vue.prototype.$http=https;
- // // #ifndef VUE3
- // // #endif
- // // #ifdef VUE3
- // import { createSSRApp } from 'vue'
- // export function createApp() {
- // const app = createSSRApp(App)
- // return {
- // app
- // }
- // }
- // // #endif
|