You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
644 B
25 lines
644 B
import Vue from 'vue'
|
|
import App from './App'
|
|
import axios from './utils/axios.js'
|
|
import store from './store'
|
|
import uView from "uview-ui";
|
|
import VueClipboards from 'vue-clipboard2'
|
|
import constant from './utils/constant.js'
|
|
Vue.config.productionTip = false
|
|
// 自定义底部导航栏
|
|
import tabBar from 'components/tabBar/tabBar.vue'
|
|
|
|
Vue.use(uView);
|
|
Vue.use(VueClipboards);
|
|
Vue.prototype.$axios = axios
|
|
Vue.prototype.$constant = constant
|
|
Vue.prototype.$store = store
|
|
Vue.config.productionTip = false
|
|
Vue.component('tab-bar', tabBar)
|
|
// Vue.prototype.$showDialog = true
|
|
App.mpType = 'app'
|
|
|
|
const app = new Vue({
|
|
...App
|
|
})
|
|
app.$mount()
|
|
|