核电App

This commit is contained in:
2023-10-16 09:48:54 +08:00
parent 19a8d267a5
commit 0496e564d2
29 changed files with 22558 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import axios from 'axios'
Vue.prototype.$http = axios.create();
import Vant from 'vant';
import 'vant/lib/index.css';
Vue.use(Vant);
import 'amfe-flexible';
Vue.config.productionTip = false
new Vue({
render: h => h(App),
router //添加路由对象
}).$mount('#app')