mirror of https://github.com/rancher/dashboard.git
47 lines
772 B
Vue
47 lines
772 B
Vue
<script>
|
|
import { formatSi, parseSi } from '@shell/utils/units';
|
|
|
|
export default {
|
|
props: {
|
|
value: {
|
|
type: [Number, String],
|
|
default: () => 0,
|
|
},
|
|
|
|
opts: {
|
|
type: Object,
|
|
default: () => {},
|
|
},
|
|
|
|
needParseSi: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
computed: {
|
|
formattedValue() {
|
|
let parseValue = this.value;
|
|
|
|
if (this.needParseSi) {
|
|
parseValue = parseSi(this.value);
|
|
}
|
|
|
|
return formatSi(parseValue, {
|
|
suffix: 'iB',
|
|
firstSuffix: 'B',
|
|
increment: 1024,
|
|
...this.opts
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<span v-if="value">{{ formattedValue }}</span>
|
|
<span
|
|
v-else
|
|
class="text-muted"
|
|
>—</span>
|
|
</template>
|