This commit is contained in:
iVampireSP.com 2023-03-15 21:43:13 +08:00
parent d9543bfaf5
commit 1477a9af07
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132

View File

@ -18,7 +18,7 @@ const time = ref(new Date().toLocaleTimeString());
const user = ref({
name: 'loading...'
})
http.get('user').then((res) => {
@ -26,4 +26,9 @@ http.get('user').then((res) => {
})
http.get('tunnels').then((res) => {
console.log(res.data)
})
</script>