2020-01-13 22:16:04 +08:00
|
|
|
import Vue from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
import store from './store'
|
|
|
|
import ElementUI from 'element-ui'
|
|
|
|
import 'element-ui/lib/theme-chalk/index.css'
|
|
|
|
import './element'
|
2020-02-13 21:50:27 +08:00
|
|
|
import 'codemirror/lib/codemirror.css';
|
|
|
|
import "codemirror/theme/ambiance.css";
|
|
|
|
import "codemirror/addon/hint/show-hint.css";
|
2020-02-15 21:44:42 +08:00
|
|
|
import "codemirror/theme/xq-light.css";
|
2020-05-17 16:53:21 +08:00
|
|
|
import "./assets/less/theme.less";
|
2020-01-13 22:16:04 +08:00
|
|
|
Vue.use(ElementUI)
|
|
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
|
|
|
new Vue({
|
2020-05-17 16:53:21 +08:00
|
|
|
store,
|
|
|
|
render: h => h(App)
|
2020-01-13 22:16:04 +08:00
|
|
|
}).$mount('#app')
|