notAuthorized.vue 474 B

1234567891011121314151617181920
  1. <template>
  2. <div class="container">
  3. <ErrorView :title="'Ooooops, you are not authorized to visit this page, please talk to administrator in order to get access rights'"
  4. :status="'401'"
  5. :navigateToPage="'/'"
  6. :navigateToText="'Navigate to Home 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>