frp/web/frps/src/components/ProxiesUDP.vue

28 lines
558 B
Vue
Raw Normal View History

2017-03-27 02:15:31 +08:00
<template>
<ProxyView :proxies="proxies" proxyType="udp" />
2017-03-27 02:15:31 +08:00
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { UDPProxy } from '../utils/proxy.js'
import ProxyView from './ProxyView.vue'
let proxies = ref<UDPProxy[]>([])
const fetchData = () => {
fetch('../api/proxy/udp', { credentials: 'include' })
.then((res) => {
return res.json()
})
.then((json) => {
for (let proxyStats of json.proxies) {
proxies.value.push(new UDPProxy(proxyStats))
2017-03-27 02:15:31 +08:00
}
})
}
fetchData()
2017-03-27 02:15:31 +08:00
</script>
<style></style>