aboutsummaryrefslogtreecommitdiff
path: root/src/site/components/statistics/byte.vue
blob: 16f4427985149d7cf4e8f476a33a2a912344300c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<template>
	<div>
		<div class="columns is-mobile">
			<div class="column is-2">
				{{ title }}
			</div>
			<div class="column">
				{{ (value / 1024 / 1024 / 1024).toFixed(2) }} GiB
			</div>
		</div>
	</div>
</template>
<script>
export default {
	props: {
		title: {
			'type': String,
			'default': null
		},
		value: {
			'type': Number,
			'default': null
		}
	}
};
</script>