summaryrefslogtreecommitdiff
path: root/src/components/AppNavigation/KmvNavigationMixin.js
blob: a15b3d3809044ca5225710590bcea5c1a6784f18 (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
const KvmNavigationMixin = {
  data() {
    return {
      navigationItems: [
        {
          id: 'console-settings',
          label: this.$t('appNavigation.ConsoleSettings'),
          route: '/operations/kvm',
        },
        {
          id: 'serial-over-lan',
          label: this.$t('appNavigation.serialOverLan'),
          route: '/operations/serial-over-lan',
        },
        {
          id: 'kvm',
          label: this.$t('appNavigation.kvm'),
          route: '/operations/kvm',
        },
      ],
    };
  },
};

export default KvmNavigationMixin;