6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
import http from "@/api/http";
|
|
|
|
export function sendInput(data: any) {
|
|
http.post("/api/input", data).then((data) => {});
|
|
}
|