29 lines
711 B
JavaScript
29 lines
711 B
JavaScript
import Vue from 'vue'
|
|
import App from './App'
|
|
import http from './common/service/_';
|
|
import top from './components/Top';
|
|
import video from './components/video';
|
|
import comment from './components/Comment';
|
|
import tvlist from './components/TvList';
|
|
import recommend from './components/Recommend';
|
|
import allComment from './components/AllComment';
|
|
|
|
Vue.component('top',top);
|
|
Vue.component('video',video);
|
|
Vue.component('recommend',recommend);
|
|
Vue.component('videoes',video);
|
|
Vue.component('comment',comment);
|
|
Vue.component('tvlist',tvlist);
|
|
Vue.component('allComment',allComment);
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.prototype.$http = http;
|
|
|
|
|
|
App.mpType = 'app'
|
|
|
|
const app = new Vue({
|
|
...App
|
|
})
|
|
app.$mount()
|