123456789101112131415161718192021222324252627282930313233343536 |
- import Vue from 'vue'
- import App from './App'
- import store from './store' // store
- import plugins from './plugins' // plugins
- import './permission' // permission
- import xbutton from '@/components/xy-button' //自定义按钮组件
- import xpopup from '@/components/xy-popup' //自定义弹框组件
- import {
- checkPermi
- } from '@/utils/permission.js'
- import getdict from './utils/getDict.js'
- Vue.use(plugins)
- // 引入:uView-UI
- import uView from '@/uni_modules/uview-ui';
- Vue.use(uView);
- import share from './utils/share.js'
- Vue.mixin(share)
- Vue.component('xbutton', xbutton)
- Vue.component('xpopup', xpopup)
- Vue.prototype.getDict = getdict;
- Vue.prototype.$store = store
- Vue.prototype.checkPermi = checkPermi
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
|