|
|
import Vue from 'vue'
|
|
|
|
|
|
import 'normalize.css/normalize.css' // A modern alternative to CSS resets
|
|
|
|
|
|
import ElementUI from 'element-ui'
|
|
|
import '@/styles/element-variables.scss'
|
|
|
import locale from 'element-ui/lib/locale/lang/en' // lang i18n
|
|
|
import '@/styles/index.scss' // global css
|
|
|
import '@/styles/iconfont.css'
|
|
|
import App from './App'
|
|
|
import store from './store'
|
|
|
import router from './router'
|
|
|
|
|
|
import '@/icons' // icon
|
|
|
import '@/permission' // permission control
|
|
|
import ViewUI from 'view-design'
|
|
|
import './styles/viewui-mine.less'
|
|
|
Vue.use(ViewUI)
|
|
|
/**
|
|
|
* If you don't want to use mock-server
|
|
|
* you want to use MockJs for mock api
|
|
|
* you can execute: mockXHR()
|
|
|
*
|
|
|
* Currently MockJs will be used in the production environment,
|
|
|
* please remove it before going online ! ! !
|
|
|
*/
|
|
|
// if (process.env.NODE_ENV === 'production') {
|
|
|
// const { mockXHR } = require('../mock')
|
|
|
// mockXHR()
|
|
|
// }
|
|
|
// set ElementUI lang to EN
|
|
|
// Vue.use(ElementUI, { locale })
|
|
|
// 如果想要中文版 element-ui,按如下方式声明
|
|
|
Vue.use(ElementUI)
|
|
|
|
|
|
import lxHeader from '@/components/LxHeader'
|
|
|
Vue.component('lx-header', lxHeader)
|
|
|
import xyTable from '@/components/XyTable'
|
|
|
Vue.component('xy-table', xyTable)
|
|
|
import xyDialog from '@/components/XyDialog'
|
|
|
Vue.component('xy-dialog', xyDialog)
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
import moment from 'moment'
|
|
|
|
|
|
Vue.prototype.$moment = moment
|
|
|
Vue.prototype.$integrateData = (target, value) => {
|
|
|
for (const i in target) {
|
|
|
if (target.hasOwnProperty(i) && value.hasOwnProperty(i)) {
|
|
|
target[i] = value[i]
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
new Vue({
|
|
|
el: '#app',
|
|
|
router,
|
|
|
store,
|
|
|
render: h => h(App)
|
|
|
})
|
|
|
|
|
|
import VueMatomo from 'vue-matomo'
|
|
|
|
|
|
Vue.use(VueMatomo, {
|
|
|
host: 'http://192.168.60.99:9000/', // 这里配置你自己的piwik服务器地址和网站ID
|
|
|
siteId: 2, // siteId值
|
|
|
// 根据router自动注册
|
|
|
router: router,
|
|
|
// // 是否需要在发送追踪信息之前请求许可
|
|
|
// // 默认false
|
|
|
requireConsent: false,
|
|
|
enableLinkTracking: true,
|
|
|
// // 是否追踪初始页面
|
|
|
// // 默认true
|
|
|
trackInitialView: false,
|
|
|
// // 最终的追踪js文件名
|
|
|
// // 默认 'piwik'
|
|
|
trackerFileName: 'matomo',
|
|
|
debug: false
|
|
|
})
|