🧑‍💻 Get window in backend

This commit is contained in:
zhbaor 2023-03-05 00:17:20 +08:00
parent cfb0337c69
commit fe36735f37
3 changed files with 8 additions and 26 deletions

View file

@ -20,7 +20,7 @@ function sendNVList() {
}
function get_path() {
axios.post("/path", { path: path.value }).then(({ data }) => {
axios.get("/path").then(({ data }) => {
path.value = data;
input.value.focus();
});