mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
653 B
29 lines
653 B
<template>
|
|
<!-- Inline Transfer TX -->
|
|
<span
|
|
v-if="client.transferTx"
|
|
class="whitespace-nowrap"
|
|
:title="$t('totalDownload') + bytes(client.transferTx)"
|
|
>
|
|
·
|
|
<IconsArrowDown class="align-middle h-3 inline" />
|
|
{{ bytes(client.transferTxCurrent) }}/s
|
|
</span>
|
|
|
|
<!-- Inline Transfer RX -->
|
|
<span
|
|
v-if="client.transferRx"
|
|
class="whitespace-nowrap"
|
|
:title="$t('totalUpload') + bytes(client.transferRx)"
|
|
>
|
|
·
|
|
<IconsArrowUp class="align-middle h-3 inline" />
|
|
{{ bytes(client.transferRxCurrent) }}/s
|
|
</span>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
client: LocalClient;
|
|
}>();
|
|
</script>
|
|
|