| <template> |
| <div> |
| <app-header ref="focusTarget" @refresh="refresh" /> |
| <b-container fluid class="page-container"> |
| <b-row no-gutters> |
| <b-col tag="nav" cols="12" md="3" lg="2"> |
| <app-navigation /> |
| </b-col> |
| <b-col cols="12" md="9" lg="10"> |
| <page-container> |
| <router-view ref="routerView" :key="routerKey" /> |
| </page-container> |
| </b-col> |
| </b-row> |
| </b-container> |
| </div> |
| </template> |
| |
| <script> |
| import AppHeader from '@/components/AppHeader'; |
| import AppNavigation from '@/components/AppNavigation'; |
| import PageContainer from '../components/Global/PageContainer'; |
| export default { |
| name: 'App', |
| components: { |
| AppHeader, |
| AppNavigation, |
| PageContainer |
| }, |
| data() { |
| return { |
| routerKey: 0 |
| }; |
| }, |
| watch: { |
| $route: function() { |
| // $nextTick = DOM updated |
| this.$nextTick(function() { |
| // Get the focusTarget DOM element |
| let focusTarget = this.$refs.focusTarget.$el; |
| |
| // Make focustarget programmatically focussable |
| focusTarget.setAttribute('tabindex', '-1'); |
| |
| // Focus element |
| focusTarget.focus(); |
| |
| // Remove tabindex from focustarget |
| // Reason: https://axesslab.com/skip-links/#update-3-a-comment-from-gov-uk |
| focusTarget.removeAttribute('tabindex'); |
| }); |
| } |
| }, |
| methods: { |
| refresh() { |
| // Changing the component :key value will trigger |
| // a component re-rendering and 'refresh' the view |
| this.routerKey += 1; |
| } |
| } |
| }; |
| </script> |
| |
| <style lang="scss" scoped> |
| .page-container { |
| margin-right: 0; |
| margin-left: 0; |
| padding-right: 0; |
| padding-left: 0; |
| } |
| </style> |