| | |
| | | import Vue from 'vue'
|
| | | import App from './App'
|
| | | import uniNavBar from "@/components/uni-nav-bar/uni-nav-bar.vue";
|
| | | import uniIcons from "@/components/uni-icons/uni-icons.vue";
|
| | | import uniList from "@/components/uni-list/uni-list.vue";
|
| | | import Vue from 'vue' |
| | | import App from './App' |
| | | import uniNavBar from "@/components/uni-nav-bar/uni-nav-bar.vue"; |
| | | import uniIcons from "@/components/uni-icons/uni-icons.vue"; |
| | | import uniList from "@/components/uni-list/uni-list.vue"; |
| | | import uniListItem from "@/components/uni-list-item/uni-list-item.vue"; |
| | | import Api from "@/static/api/api.js";
|
| | |
|
| | | Vue.config.productionTip = false;
|
| | |
|
| | | Vue.component('uniNavBar',uniNavBar);
|
| | | Vue.component('uniList',uniList);
|
| | | Vue.component('uniListItem',uniListItem);
|
| | | Vue.prototype.$api = new Api();
|
| | |
|
| | | App.mpType = 'app';
|
| | |
|
| | | const app = new Vue({
|
| | | ...App
|
| | | })
|
| | | import Api from "@/static/api/api.js"; |
| | | |
| | | Vue.config.productionTip = false; |
| | | |
| | | Vue.component('uniNavBar',uniNavBar); |
| | | Vue.component('uniList',uniList); |
| | | Vue.component('uniListItem',uniListItem); |
| | | Vue.prototype.$api = new Api(); |
| | | |
| | | App.mpType = 'app'; |
| | | |
| | | const app = new Vue({ |
| | | ...App |
| | | }) |
| | | app.$mount() |