Files
ClassContent/历届学生/逯帅帅/项目开发/上课项目/uniapp在包河/main.js
2024-09-27 02:06:13 +08:00

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()