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.
72 lines
1.4 KiB
72 lines
1.4 KiB
import Vue from 'vue'
|
|
|
|
import Cookies from 'js-cookie'
|
|
|
|
import 'normalize.css/normalize.css'
|
|
|
|
import Element from 'element-ui'
|
|
//列自适应宽度:https://github.com/legendJaden/AFTableColumn
|
|
import AFTableColumn from 'af-table-column'
|
|
|
|
//可编辑grid插件
|
|
import 'xe-utils'
|
|
import VXETable from 'vxe-table'
|
|
import 'vxe-table/lib/style.css'
|
|
|
|
import 'font-awesome/css/font-awesome.css'
|
|
|
|
//
|
|
import mavonEditor from 'mavon-editor'
|
|
import 'mavon-editor/dist/css/index.css'
|
|
|
|
// 数据字典
|
|
import dict from './components/Dict'
|
|
|
|
|
|
import scroll from 'vue-seamless-scroll'
|
|
Vue.use(scroll)
|
|
|
|
Vue.use(AFTableColumn)
|
|
|
|
// 权限指令
|
|
import permission from './components/Permission'
|
|
import './assets/styles/element-variables.scss'
|
|
// global css
|
|
import './assets/styles/index.scss'
|
|
|
|
// 代码高亮
|
|
import VueHighlightJS from 'vue-highlightjs'
|
|
import 'highlight.js/styles/atom-one-dark.css'
|
|
|
|
import App from './App'
|
|
import store from './store'
|
|
import router from './router/routers'
|
|
|
|
import './assets/icons' // icon
|
|
import './router/index' // permission control
|
|
import 'echarts-gl'
|
|
|
|
import 'jquery'
|
|
|
|
Vue.use(AFTableColumn)
|
|
Vue.use(VXETable)
|
|
Vue.prototype.$XModal = VXETable.modal
|
|
|
|
|
|
Vue.use(VueHighlightJS)
|
|
Vue.use(mavonEditor)
|
|
Vue.use(permission)
|
|
Vue.use(dict)
|
|
Vue.use(Element, {
|
|
size: Cookies.get('size') || 'small' // set element-ui default size
|
|
})
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
store,
|
|
render: h => h(App)
|
|
})
|
|
|
|
|