登录前后端联调对接

This commit is contained in:
陈淳
2022-10-12 19:00:26 +08:00
parent dd7bbb138a
commit de28fd4ca4
13 changed files with 507 additions and 97 deletions

View File

@@ -2,8 +2,11 @@ import { createApp } from 'vue'
import './style.css'
import 'vant/es/image-preview/style';
import router from './router'
import store from './store'
import './permission'
import App from './App.vue'
const app=createApp(App)
app.use(router)
app.use(store)
app.mount('#app');