| 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-now.vue |
<template>
<section id="now" class="plugin">
<span>{{ value }}</span>
</section>
</template>
<script>
export default {
props: {
data: {
type: Object
}
},
computed: {
value() {
return this.data.stats['now'];
}
}
};
</script>