mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 16:25:22 +03:00
29 lines
514 B
Vue
29 lines
514 B
Vue
<template>
|
|
<div>
|
|
<span>{{ $t("statusbar_port_utilization.message") }}</span>
|
|
<ReadingStat
|
|
message="statusbar_usage_download"
|
|
:value="usageDown"
|
|
unit="%"
|
|
/>
|
|
<ReadingStat message="statusbar_usage_upload" :value="usageUp" unit="%" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ReadingStat from "./ReadingStat.vue";
|
|
|
|
export default {
|
|
props: {
|
|
usageDown: {
|
|
type: Number,
|
|
},
|
|
usageUp: {
|
|
type: Number,
|
|
},
|
|
},
|
|
components: {
|
|
ReadingStat,
|
|
},
|
|
};
|
|
</script>
|