sinosoft-ap-ui
Version:
18 lines (17 loc) • 425 B
JavaScript
import Vue from 'vue';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
import App from './App';
import router from './router';
import plugin from './components/index';
import $ from 'jquery';
Vue.use(ElementUI);
Vue.use(plugin);
Vue.config.productionTip = false;
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App }
});