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

15 lines
373 B
JavaScript

5 years ago
import Vue from 'vue'
import { Radio } from 'element-ui'
5 years ago
import App from './App.vue'
import './registerServiceWorker'
5 years ago
import './plugins/element.js'
5 years ago
Vue.component(Radio.name, Radio)
// only if your build system can import css, otherwise import it wherever you would import your css.
Vue.config.productionTip = false;
5 years ago
new Vue({
render: h => h(App),
}).$mount('#app');