mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
import Vue from 'vue'
|
|
|
|
import 'normalize.css/normalize.css' // A modern alternative to CSS resets
|
|
|
|
import ElementUI from 'element-ui'
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
import locale from 'element-ui/lib/locale/lang/en' // lang i18n
|
|
|
|
import '@/styles/index.scss' // global css
|
|
|
|
import 'font-awesome/scss/font-awesome.scss'// FontAwesome
|
|
|
|
import 'codemirror/lib/codemirror.css'
|
|
|
|
// import ba from 'vue-ba'
|
|
|
|
import App from './App'
|
|
import store from './store'
|
|
import router from './router'
|
|
|
|
import '@/icons' // icon
|
|
import '@/permission' // permission control
|
|
|
|
import request from './api/request'
|
|
import i18n from './i18n'
|
|
|
|
Vue.use(ElementUI, { locale })
|
|
|
|
// Vue.use(ba, 'c35e3a563a06caee2524902c81975add')
|
|
// Vue.use(ba, {
|
|
// siteId: 'c35e3a563a06caee2524902c81975add'
|
|
// })
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
// 百度统计
|
|
window._hmt = window._hmt || [];
|
|
(function () {
|
|
let hm = document.createElement('script')
|
|
hm.src = 'https://hm.baidu.com/hm.js?c35e3a563a06caee2524902c81975add'
|
|
let s = document.getElementsByTagName('script')[0]
|
|
s.parentNode.insertBefore(hm, s)
|
|
})()
|
|
|
|
// inject request api
|
|
Vue.prototype.$request = request
|
|
|
|
const app = new Vue({
|
|
el: '#app',
|
|
i18n,
|
|
router,
|
|
store,
|
|
render: h => h(App)
|
|
})
|
|
export default app
|