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.
|
|
import Vue from 'vue' import App from './App.vue' import router from './router' import store from './store'
// element-ui
import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css' Vue.use(ElementUI) // 适配flex
import '@/common/flexible.js'
// 引入全局css
import './assets/styles/style.scss' import './assets/iconfont/iconfont.js' import './assets/fonts/fonts.css'
import axios from 'axios' Vue.prototype.$axios = axios
// 馆代码 1201为东西湖馆代码 / 本地测试用FTZN
Vue.prototype.libcode = 'FTZN' // Vue.prototype.libcode = '1201'
// 引入echart
import echarts from 'echarts' Vue.prototype.$echarts = echarts
Vue.config.productionTip = false
new Vue({ router, store, render: (h) => h(App) }).$mount('#app')
|