Sukanya Pandey | 96f69ca | 2020-05-20 15:32:57 +0530 | [diff] [blame] | 1 | <template> |
| 2 | <b-container fluid="xl"> |
Sukanya Pandey | 615b315 | 2020-08-19 19:13:49 +0530 | [diff] [blame] | 3 | <page-title class="mb-4" :description="$t('pageSerialOverLan.subTitle')" /> |
Sukanya Pandey | 96f69ca | 2020-05-20 15:32:57 +0530 | [diff] [blame] | 4 | |
Sukanya Pandey | 615b315 | 2020-08-19 19:13:49 +0530 | [diff] [blame] | 5 | <page-section class="mb-0"> |
| 6 | <serial-over-lan-console :is-full-window="false" /> |
Sukanya Pandey | 96f69ca | 2020-05-20 15:32:57 +0530 | [diff] [blame] | 7 | </page-section> |
| 8 | </b-container> |
| 9 | </template> |
| 10 | |
| 11 | <script> |
Sukanya Pandey | 96f69ca | 2020-05-20 15:32:57 +0530 | [diff] [blame] | 12 | import PageTitle from '@/components/Global/PageTitle'; |
| 13 | import PageSection from '@/components/Global/PageSection'; |
| 14 | import SerialOverLanConsole from './SerialOverLanConsole'; |
Surya V | de23ea2 | 2024-07-11 15:19:46 +0530 | [diff] [blame] | 15 | import { useI18n } from 'vue-i18n'; |
Sukanya Pandey | 96f69ca | 2020-05-20 15:32:57 +0530 | [diff] [blame] | 16 | |
| 17 | export default { |
| 18 | name: 'SerialOverLan', |
Sukanya Pandey | 615b315 | 2020-08-19 19:13:49 +0530 | [diff] [blame] | 19 | components: { |
| 20 | PageSection, |
| 21 | PageTitle, |
Derick Montague | 602e98a | 2020-10-21 16:20:00 -0500 | [diff] [blame] | 22 | SerialOverLanConsole, |
| 23 | }, |
Surya V | de23ea2 | 2024-07-11 15:19:46 +0530 | [diff] [blame] | 24 | data() { |
| 25 | return { |
| 26 | $t: useI18n().t, |
| 27 | }; |
| 28 | }, |
Sukanya Pandey | 96f69ca | 2020-05-20 15:32:57 +0530 | [diff] [blame] | 29 | }; |
| 30 | </script> |