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