景区管控小程序
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.
jq_miniApp/main.js

25 lines
481 B

3 years ago
import Vue from 'vue'
import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import './permission' // permission
2 years ago
//自定义组件
2 years ago
import commonTitle from './components/custom-title/commonTitle.vue'
2 years ago
//挂载组件
Vue.component('common-title',commonTitle)
3 years ago
Vue.use(plugins)
Vue.config.productionTip = false
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
...App
})
2 years ago
app.$mount()