notAuthenticated.vue 436 B

1234567891011121314151617181920
  1. <template>
  2. <div class="container">
  3. <ErrorView :title="'Ooooops, you are not authenticated to visit this page, please login'"
  4. :status="'401'"
  5. :navigateToPage="'login'"
  6. :navigateToText="'Navigate to Login Page'" />
  7. </div>
  8. </template>
  9. <script>
  10. import ErrorView from '@/components/shared/ErrorView'
  11. export default {
  12. components: {
  13. ErrorView
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. </style>