Explorar o código

chore: 删除 `http` 的 `README.md`,看文档 `http请求` 即可

xiaoxian521 %!s(int64=2) %!d(string=hai) anos
pai
achega
fb734f3394
Modificáronse 1 ficheiros con 0 adicións e 25 borrados
  1. 0 25
      src/utils/http/README.md

+ 0 - 25
src/utils/http/README.md

@@ -1,25 +0,0 @@
-## 用法
-
-### Get 请求
-
-```
-import { http } from "@/utils/http";
-
-// params传参
-http.request('get', '/xxx', { params: param });
-
-// url拼接传参
-http.request('get', '/xxx?message=' + msg);
-```
-
-### Post 请求
-
-```
-import { http } from "@/utils/http";
-
-// params传参
-http.request('post', '/xxx', { params: param });
-
-// data传参
-http.request('post', '/xxx', { data: param });
-```