[新增地址管理模块]

This commit is contained in:
2021-09-16 11:26:45 +08:00
parent c95401abc5
commit 6946d6bc82
169 changed files with 34400 additions and 1377 deletions

11
main.js
View File

@@ -1,18 +1,21 @@
import Vue from 'vue'
import App from './App'
import { router, RouterMount } from './router'
import store from './store'
import store from './store'
import noList from './components/no-list-components/index.vue'
Vue.use(router)
Vue.use(router)
Vue.config.productionTip = false
Vue.prototype.$store = store
App.mpType = 'app'
import uView from "uview-ui";
Vue.use(uView);
const app = new Vue({
...App
})
Vue.component('no-list',noList)
//v1.3.5起 H5端 你应该去除原有的app.$mount();使用路由自带的渲染方式
// #ifdef H5
RouterMount(app,router,'#app')