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.ts

47 lines
764 B
TypeScript

5 years ago
import Vue from 'vue'
import App from './App.vue'
import './registerServiceWorker'
5 years ago
import {
4 years ago
Button,
Checkbox,
Col,
Container,
Footer,
Icon,
Image,
Link,
Main,
Notification,
Progress,
Radio,
Row,
Table,
TableColumn,
Tooltip,
Upload
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');