summaryrefslogtreecommitdiff
path: root/src/views/SystemDescription/ServerParametrs/ServerParametrs.vue
blob: bbc461eb70e1bab0168f48b7bd0ca08f927e8aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <b-container
    :style="{ display: 'flex', 'flex-direction': 'column' }"
    fluid="xxl pt-0 m-0"
  >
    <page-title />
    <div class="main-container">
      <servere-parametrs-section />
    </div>
  </b-container>
</template>

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

export default {
  components: {
    PageTitle,
    ServereParametrsSection,
  },
};
</script>