mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
22 lines
517 B
Vue
22 lines
517 B
Vue
// The Vue build version to load with the `import` command
|
|
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
|
|
import Vue from 'vue'
|
|
import App from './App'
|
|
import router from './router'
|
|
import 'vue-antd-ui/dist/antd.css'
|
|
import Viser from 'viser-vue'
|
|
import axios from 'axios'
|
|
import '@/mock/index'
|
|
|
|
Vue.prototype.$axios = axios
|
|
Vue.config.productionTip = false
|
|
Vue.use(Viser)
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
components: { App },
|
|
template: '<App/>'
|
|
})
|