You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
duoji-frontend/src/main.js

17 lines
396 B
JavaScript

6 years ago
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import './plugins/antd'
import './components/index'
import utils from './utils/index'
import api from './plugins/axios/index'
Vue.config.productionTip = false
Vue.prototype.$utils = utils
Vue.prototype.$api = api
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')