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.
unblock-music-web/src/main.js

34 lines
710 B
JavaScript

5 years ago
import Vue from 'vue'
import App from './App.vue'
import './registerServiceWorker'
5 years ago
import {
5 years ago
Button, Col, Container, Footer, Icon, Image, Link, Main,
Row, Table, TableColumn, Upload, Radio, Checkbox, Progress,
Notification, Tooltip,
5 years ago
} from 'element-ui';
import 'element-ui/lib/theme-chalk/base.css';
5 years ago
5 years ago
Vue.use(Link);
Vue.use(Image);
Vue.use(Button);
Vue.use(Table);
Vue.use(TableColumn);
Vue.use(Main);
Vue.use(Footer);
Vue.use(Container);
Vue.use(Icon);
Vue.use(Row);
Vue.use(Col);
Vue.use(Upload);
Vue.use(Checkbox);
Vue.use(Radio);
Vue.use(Tooltip);
Vue.use(Progress);
5 years ago
Vue.prototype.$notify = Notification;
Vue.config.productionTip = false;
5 years ago
new Vue({
render: h => h(App),
}).$mount('#app');