1234567891011121314151617181920 |
- <template>
- <div class="container">
- <ErrorView :title="'Ooooops, you are not authorized to visit this page, please talk to administrator in order to get access rights'"
- :status="'401'"
- :navigateToPage="'/'"
- :navigateToText="'Navigate to Home Page'" />
- </div>
- </template>
- <script>
- import ErrorView from '@/components/shared/ErrorView'
- export default {
- components: {
- ErrorView
- }
- }
- </script>
- <style scoped>
- </style>
|