????

Your IP : 3.17.132.171


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-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>