12345678910111213141516171819202122232425262728293031323334 |
- import Vue from 'vue'
- import ElementUI from 'element-ui'
- import App from '@/App'
- import router from '@/router'
- import store from '@/store'
- import VueCookie from 'vue-cookie'
- import '@/icons'
- import '@/element-ui-theme/style.css'
- import Avue from '@smallwei/avue'
- import '@smallwei/avue/lib/index.css'
- import '@/assets/scss/index.scss'
- import httpRequest from '@/utils/httpRequest'
- import { isAuth } from '@/utils'
- Vue.use(Avue)
- Vue.use(VueCookie)
- Vue.use(ElementUI)
- Vue.config.productionTip = false
- Vue.prototype.$http = httpRequest
- Vue.prototype.isAuth = isAuth
- new Vue({
- el: '#app',
- router,
- store,
- render: h => h(App)
- })
|