unlock-music/src/plugins/element.js
MengYX 53d4b5efe5 Finish ncm qmc flac mp3
Finish UI
Add loading screen
Change PWA Config
Remove useless file
Load Element-UI on Demand
Fix deploy on sub-folder
2019-07-05 15:05:11 +08:00

34 lines
492 B
JavaScript

import Vue from 'vue'
import {
Image,
Button,
Table,
TableColumn,
Main,
Footer,
Container,
Icon,
Row,
Col,
Upload,
Notification,
Link
} from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css'
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.prototype.$notify = Notification;