1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00
betaflight-configurator/src/components/status-bar/PortUtilization.vue
Tomas Chmelevskij d6cee386e8 Add Vue
Setup vue with gulp and initial components:

* Status Bar
* Logo
* Battery Legend
2020-10-14 17:51:03 +02:00

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>