blob: 48a683459c5ec9f189fb65e26fabe003f0289667 [file] [log] [blame]
Sukanya Pandey96f69ca2020-05-20 15:32:57 +05301<template>
2 <b-container fluid="xl">
Sukanya Pandey615b3152020-08-19 19:13:49 +05303 <page-title class="mb-4" :description="$t('pageSerialOverLan.subTitle')" />
Sukanya Pandey96f69ca2020-05-20 15:32:57 +05304
Sukanya Pandey615b3152020-08-19 19:13:49 +05305 <page-section class="mb-0">
6 <serial-over-lan-console :is-full-window="false" />
Sukanya Pandey96f69ca2020-05-20 15:32:57 +05307 </page-section>
8 </b-container>
9</template>
10
11<script>
Sukanya Pandey96f69ca2020-05-20 15:32:57 +053012import PageTitle from '@/components/Global/PageTitle';
13import PageSection from '@/components/Global/PageSection';
14import SerialOverLanConsole from './SerialOverLanConsole';
15
16export default {
17 name: 'SerialOverLan',
Sukanya Pandey615b3152020-08-19 19:13:49 +053018 components: {
19 PageSection,
20 PageTitle,
Derick Montague602e98a2020-10-21 16:20:00 -050021 SerialOverLanConsole,
22 },
Sukanya Pandey96f69ca2020-05-20 15:32:57 +053023};
24</script>