feat: scaffold elevator-front, alarm-front, front_acs Vue 2 projects

Former-commit-id: 083600ea51f3204ce90fccbf9b7c80e055d13f1c
This commit is contained in:
反编译工作区
2026-04-29 13:05:27 +08:00
parent 557a3d316e
commit dff95489a8
27 changed files with 27 additions and 396 deletions
@@ -1,17 +1 @@
import Vue from 'vue';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
import App from './App.vue';
import router from './router';
import store from './store';
import axios from 'axios';
Vue.use(ElementUI);
Vue.prototype.$http = axios;
Vue.config.productionTip = false;
new Vue({
router,
store,
render: (h) => h(App),
}).$mount('#app');
import Vue from 'vue';import ElementUI from 'element-ui';import 'element-ui/lib/theme-chalk/index.css';import App from './App.vue';import router from './router';import store from './store';import axios from 'axios';Vue.use(ElementUI);Vue.prototype.$http=axios;Vue.config.productionTip=false;new Vue({router,store,render:h=>h(App)}).$mount('#app');