This commit is contained in:
wh1te909
2019-10-22 22:22:36 +00:00
commit c889edaf43
154 changed files with 18653 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<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>