not-found.vue 505 Bytes
Newer Older
1 2 3 4
<template lang='pug'>
  v-app
    .notfound
      .notfound-content
5
        img.animated.fadeIn(src='/_assets/svg/icon-delete-file.svg', alt='Not Found')
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
        .headline {{$t('notfound.title')}}
        .subheading.mt-3 {{$t('notfound.subtitle')}}
        v-btn.mt-5(color='red lighten-4', href='/', large, outlined)
          v-icon(left) mdi-home
          span {{$t('notfound.gohome')}}
</template>

<script>

export default {
  data() {
    return { }
  }
}
</script>

<style lang='scss'>

</style>