summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/IpxeBuilderModule.vue
blob: e2c38ffd6203f6ad612b2570c96b0df2d07bfd77 (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<i18n>
{
  "en": {
    "ipxe": "iPXE"
  },
  "de": {
    "ipxe": "iPXE"
  }
}
</i18n>

<template>
  <v-container fill-height>
    <v-layout>
      <v-flex xl10 offset-xl1 lg12>
        <v-card class="tabbar-card">
          <v-tabs v-model="tabs" grow :dark="tabsDark" :color="tabsColor" :slider-color="tabsSliderColor" hide-slider>
            <v-tab><v-icon class="tabbar-tabicon">memory</v-icon>{{ $t('ipxe') }}</v-tab>
          </v-tabs>
        </v-card>
        <v-tabs-items v-model="tabs" style="padding-bottom: 20px">
          <v-tab-item lazy :transition="false" :reverse-transition="false">
            <ipxe-builder-module-config></ipxe-builder-module-config>
          </v-tab-item>
        </v-tabs-items>
      </v-flex>
    </v-layout>
  </v-container>
</template>

<script>
import { mapGetters } from 'vuex'
import IpxeBuilderModuleConfig from '@/components/IpxeBuilderModuleConfig'

export default {
  name: 'IpxeBuilderModule',
  components: {
    IpxeBuilderModuleConfig
  },
  data () {
    return {
      tabs: 0
    }
  },
  computed: {
    ...mapGetters(['tabsDark', 'tabsColor', 'tabsSliderColor'])
  },
  watch: {
  },
  methods: {
  },
  created () {
  }
}
</script>