12345678910111213141516171819202122 |
- // 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 axios from 'axios'
- import 'babel-polyfill'
- Vue.config.productionTip = false
- Vue.prototype.$bus = new Vue()
- Vue.prototype.$cdn = 'https://4dscene.4dage.com/cgaii/PC'
- axios.defaults.baseURL = 'https://www.cgaii.com'
- Vue.prototype.$http = axios
- /* eslint-disable no-new */
- new Vue({
- el: '#app',
- router,
- components: { App },
- template: '<App/>'
- })
|