????

Your IP : 3.149.236.120


Current Path : /usr/lib/python3.6/site-packages/glances/outputs/static/js/components/
Upload File :
Current File : //usr/lib/python3.6/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>