not-found.vue 505 B

123456789101112131415161718192021222324
  1. <template lang='pug'>
  2. v-app
  3. .notfound
  4. .notfound-content
  5. img.animated.fadeIn(src='/_assets/svg/icon-delete-file.svg', alt='Not Found')
  6. .headline {{$t('notfound.title')}}
  7. .subheading.mt-3 {{$t('notfound.subtitle')}}
  8. v-btn.mt-5(color='red lighten-4', href='/', large, outlined)
  9. v-icon(left) mdi-home
  10. span {{$t('notfound.gohome')}}
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return { }
  16. }
  17. }
  18. </script>
  19. <style lang='scss'>
  20. </style>