feat: 添加vue3bbs前端

This commit is contained in:
橙子
2023-02-26 13:17:19 +08:00
parent 72decd970a
commit 3e31f7783f
30 changed files with 5842 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import myaxios from '@/utils/request'
export function login(username, password){
return myaxios({
url: '/Account/login',
method: 'post',
data: {
username,
password
}
})
};