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.
|
|
|
import Vue from 'vue'
|
|
|
|
import App from './App.vue'
|
|
|
|
import './registerServiceWorker'
|
|
|
|
import {
|
|
|
|
Button, Col, Container, Footer, Icon, Image, Link, Main,
|
|
|
|
Row, Table, TableColumn, Upload, Radio, Checkbox,
|
|
|
|
Notification,
|
|
|
|
} 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.use(Checkbox);
|
|
|
|
Vue.use(Radio);
|
|
|
|
Vue.prototype.$notify = Notification;
|
|
|
|
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
|
|
|
|
new Vue({
|
|
|
|
render: h => h(App),
|
|
|
|
}).$mount('#app');
|