blob: b9d3f2e6b9df8cc093c9fbfb9020b5cff0efd4d0 [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';
Surya V603cfbf2024-07-11 15:19:46 +053015import { useI18n } from 'vue-i18n';
Sukanya Pandey96f69ca2020-05-20 15:32:57 +053016
17export default {
18 name: 'SerialOverLan',
Sukanya Pandey615b3152020-08-19 19:13:49 +053019 components: {
20 PageSection,
21 PageTitle,
Derick Montague602e98a2020-10-21 16:20:00 -050022 SerialOverLanConsole,
23 },
Surya V603cfbf2024-07-11 15:19:46 +053024 data() {
25 return {
26 $t: useI18n().t,
27 };
28 },
Sukanya Pandey96f69ca2020-05-20 15:32:57 +053029};
30</script>