首页个人信息组件以及搜索框

This commit is contained in:
2023-07-02 22:51:30 +08:00
parent 1bca584178
commit f771621e4f
10 changed files with 342 additions and 139 deletions

View File

@@ -5,13 +5,19 @@ import Element from 'element-ui'
import './assets/styles/element-variables.scss'
import axios from "axios";
import './assets/icon/iconfont.css'
import store from './store'
axios.defaults.withCredentials=true;
import cookie from 'vue-cookie'
Vue.prototype.$cookie = cookie;
Vue.config.productionTip = false
Vue.use(Element);
new Vue({
router,
axios,
store,
cookie,
render: h => h(App)
}).$mount('#app')