summaryrefslogtreecommitdiff
path: root/src/views/Processors/Specification/ProcessorsSpecificationPage.vue
blob: 3f9525ae1c186c770d6d2aefb82463a4555a755e (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<template>
  <b-container
    :style="{ display: 'flex', 'flex-direction': 'column' }"
    fluid="xxl pt-0 m-0"
  >
    <page-title />
    <div class="main-container">
      <page-section class="bootstrap-table__section">
        <span class="bold-16px">{{
          $t('pageInventory.installedProcessors')
        }}</span>
        <!-- Processors Specification Table -->
        <processors-specification-table />
        <span class="bold-16px">{{
          $t('pageInventory.installedAccelerator')
        }}</span>
        <!-- Accelerators Specification Table -->
        <accelerator-specification-table />
      </page-section>
    </div>
  </b-container>
</template>

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

import ProcessorsSpecificationTable from './ProcessorsSpecificationTable';
import AcceleratorSpecificationTable from './AcceleratorSpecificationTable';
export default {
  components: {
    PageTitle,
    PageSection,
    ProcessorsSpecificationTable,
    AcceleratorSpecificationTable,
  },
};
</script>
<style lang="scss" scoped>
.bold-16px {
  display: block;
  margin: 25px 0 16px 0;
}
</style>