Download path dialog

This commit is contained in:
zhbaor 2023-03-05 00:06:04 +08:00
parent a21d60c717
commit cfb0337c69
3 changed files with 38 additions and 10 deletions

View file

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