用户登录测试基本完成

This commit is contained in:
2023-06-29 23:26:05 +08:00
parent b3bdb8afba
commit efb698a282
9 changed files with 200 additions and 114 deletions

View File

@@ -3,12 +3,14 @@ import App from './App.vue'
import router from './router'
import Element from 'element-ui'
import './assets/styles/element-variables.scss'
import axios from "axios";
axios.defaults.withCredentials=true;
Vue.config.productionTip = false
Vue.use(Element);
new Vue({
router,
axios,
render: h => h(App)
}).$mount('#app')