| Current Path : /proc/self/root/lib/python3.9/site-packages/glances/outputs/static/js/components/ |
| Current File : //proc/self/root/lib/python3.9/site-packages/glances/outputs/static/js/components/plugin-uptime.vue |
<template>
<section class="plugin" id="uptime">
<span>Uptime: {{ value }}</span>
</section>
</template>
<script>
export default {
props: {
data: {
type: Object
}
},
computed: {
value() {
return this.data.stats['uptime'];
}
}
};
</script>