summaryrefslogtreecommitdiffstats
path: root/glances/outputs/static/js/components/plugin-now.vue
blob: f35688c5f30bca2c5d8e891e7e63c299c361f1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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>