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.
47 lines
764 B
TypeScript
47 lines
764 B
TypeScript
5 years ago
|
import Vue from 'vue'
|
||
|
import App from './App.vue'
|
||
|
import './registerServiceWorker'
|
||
5 years ago
|
import {
|
||
5 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';
|
||
5 years ago
|
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);
|
||
5 years ago
|
Vue.use(Tooltip);
|
||
|
Vue.use(Progress);
|
||
5 years ago
|
Vue.prototype.$notify = Notification;
|
||
5 years ago
|
|
||
5 years ago
|
Vue.config.productionTip = false;
|
||
5 years ago
|
new Vue({
|
||
5 years ago
|
render: h => h(App),
|
||
|
}).$mount('#app');
|