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.
|
|
|
|
import Vue from 'vue'
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import router from './router'
|
|
|
|
|
import store from './store'
|
|
|
|
|
import './plugins/antd'
|
|
|
|
|
import './components/index'
|
|
|
|
|
import './layouts/index'
|
|
|
|
|
import utils from './utils/index'
|
|
|
|
|
import api from './plugins/axios/index'
|
|
|
|
|
import JSMpeg from './utils/jsmpeg.min'
|
|
|
|
|
import vxgplayer from '../public/video_play_plugins/vxgplayer-1.8.54.min'
|
|
|
|
|
import '../public/video_play_plugins/vxgplayer-1.8.54.min.css'
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
Vue.prototype.$utils = utils
|
|
|
|
|
Vue.prototype.$api = api
|
|
|
|
|
// import axios from 'axios'
|
|
|
|
|
// Vue.prototype.$axios = axios
|
|
|
|
|
new Vue({
|
|
|
|
|
router,
|
|
|
|
|
store,
|
|
|
|
|
render: h => h(App)
|
|
|
|
|
}).$mount('#app')
|