mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 21:50:28 +08:00
16 lines
329 B
JavaScript
16 lines
329 B
JavaScript
|
|
Vue.component("bytes-var", {
|
||
|
|
props: ["v-bytes"],
|
||
|
|
data: function () {
|
||
|
|
let bytes = this.vBytes
|
||
|
|
if (typeof bytes != "number") {
|
||
|
|
bytes = 0
|
||
|
|
}
|
||
|
|
let format = teaweb.splitFormat(teaweb.formatBytes(bytes))
|
||
|
|
return {
|
||
|
|
format: format
|
||
|
|
}
|
||
|
|
},
|
||
|
|
template:`<var class="normal">
|
||
|
|
<span>{{format[0]}}</span>{{format[1]}}
|
||
|
|
</var>`
|
||
|
|
})
|