This commit is contained in:
2025-11-10 20:11:14 +08:00
parent 86c7a0e0d5
commit 70bf6fe20f
12 changed files with 325 additions and 67 deletions
@@ -1,9 +1,20 @@
<script setup>
import { my_network_func } from '@/my_network_func';
function t(){
console.log("test")
my_network_func.postJson("/users/test",{
a:"1"
},(a)=>{
console.log(a)
});
}
</script>
<template>
<main>
111
<button @click="t">222</button>
</main>
</template>