Files
tacticalrmm-web/src/components/SummaryTab.vue
wh1te909 8853ec0bd3 init
2019-10-22 22:22:36 +00:00

27 lines
420 B
Vue

<template>
<div v-if="Object.keys(summary).length === 0">
No agent selected
</div>
<div v-else>
{{ summary.operating_system }}
</div>
</template>
<script>
import axios from 'axios';
export default {
name: 'SummaryTab',
data() {
return {
}
},
computed: {
summary() {
return this.$store.state.agentSummary;
}
}
}
</script>