1234567891011121314151617181920 |
- <template>
- <div class="container">
- <ErrorView :title="'Ooooops, you are not authenticated to visit this page, please login'"
- :status="'401'"
- :navigateToPage="'login'"
- :navigateToText="'Navigate to Login Page'" />
- </div>
- </template>
- <script>
- import ErrorView from '@/components/shared/ErrorView'
- export default {
- components: {
- ErrorView
- }
- }
- </script>
- <style scoped>
- </style>
|