summaryrefslogtreecommitdiff
path: root/src/views/_sila/Operations/Kvm/Kvm.vue
blob: 4db46372337770c99bcdbcd426ada6d71b5de70f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<template>
  <b-container fluid="xl">
    <page-title />
    <div
      class="terminal-container"
      :class="{
        disabledDiv: $store.getters['authentication/role'] === 'ReadOnly',
      }"
    >
      <kvm-console :is-full-window="false" />
    </div>
  </b-container>
</template>

<script>
import PageTitle from '@/components/_sila/Global/PageTitle';
import KvmConsole from './KvmConsole';

export default {
  name: 'Kvm',
  components: { PageTitle, KvmConsole },
};
</script>

<style scoped>
.terminal-container {
  width: 100%;
}
</style>