mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-23 07:33:53 +08:00
19 lines
446 B
JavaScript
19 lines
446 B
JavaScript
import ElementUI from 'element-ui';
|
|
import 'element-ui/lib/theme-chalk/index.css';
|
|
import 'normalize.css/normalize.css'; // A modern alternative to CSS resets
|
|
import Vue from 'vue';
|
|
import App from './App.vue';
|
|
import router from './router';
|
|
import store from './store';
|
|
import './styles/global.scss';
|
|
|
|
Vue.use(ElementUI);
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: function (h) { return h(App) }
|
|
}).$mount('#app')
|