Dixsie Wolmers | 11e655c | 2020-08-26 14:53:01 -0500 | [diff] [blame] | 1 | <template> |
| 2 | <b-container fluid="xl"> |
| 3 | <page-title :description="$t('pagePageNotFound.description')" /> |
| 4 | </b-container> |
| 5 | </template> |
| 6 | <script> |
| 7 | import PageTitle from '@/components/Global/PageTitle'; |
Surya V | de23ea2 | 2024-07-11 15:19:46 +0530 | [diff] [blame] | 8 | import { useI18n } from 'vue-i18n'; |
| 9 | |
Dixsie Wolmers | 11e655c | 2020-08-26 14:53:01 -0500 | [diff] [blame] | 10 | export default { |
| 11 | name: 'PageNotFound', |
Derick Montague | 602e98a | 2020-10-21 16:20:00 -0500 | [diff] [blame] | 12 | components: { PageTitle }, |
Surya V | de23ea2 | 2024-07-11 15:19:46 +0530 | [diff] [blame] | 13 | data() { |
| 14 | return { |
| 15 | $t: useI18n().t, |
| 16 | }; |
| 17 | }, |
Dixsie Wolmers | 11e655c | 2020-08-26 14:53:01 -0500 | [diff] [blame] | 18 | }; |
| 19 | </script> |