123456789101112131415161718192021222324252627282930313233343536 |
- import Vue from 'vue'
- import App from './App'
- import api from './util/api.js'
- Vue.prototype.$myRequest = api.myRequest
- Vue.prototype.$BASE_URL = api.BASE_URL;
- Vue.prototype.$websiteUrl = api.websiteUrl
- // import wx from 'node_modules/jweixin-module/lib/index'
-
-
-
- //配置公共方法
- import common from './common/common.js'
- Vue.prototype.$noMultipleClicks = common.noMultipleClicks; // (禁止重复点击)
-
-
-
-
- // 引入colorui组件
- import cuCustom from 'colorui/components/cu-custom.vue'
- Vue.component('cu-custom',cuCustom)
- // Cookies.get('name')
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
|