error.vue 413 B

1234567891011121314151617181920
  1. <template>
  2. <div class="container">
  3. <ErrorView title="Ooooops, page you are trying to access doesn't exist :("
  4. :status="'404'"
  5. :navigateToPage="'/'"
  6. :navigateToText="'Navigate back Home'" />
  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>