summaryrefslogtreecommitdiffstats
path: root/glances/outputs/static/js/components/plugin-now.vue
blob: e6b532cfd8b6f790abc5b827b6d7028e7eb58a15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
    <section id="now" class="plugin">
        <div class="table-row">
            <div class="table-cell text-left">{{ value }}</div>
        </div>
    </section>
</template>

<script>
export default {
    props: {
        data: {
            type: Object
        }
    },
    computed: {
        value() {
            return this.data.stats['now'];
        }
    }
};
</script>