404.vue 374 B

12345678910111213141516
  1. <template>
  2. <div class="fixed-center text-center">
  3. <p>
  4. <img
  5. src="~assets/sad.svg"
  6. style="width:30vw;max-width:150px;"
  7. >
  8. </p>
  9. <p class="text-faded">Sorry, nothing here...<strong>(404)</strong></p>
  10. <q-btn
  11. color="secondary"
  12. style="width:200px;"
  13. @click="$router.push('/')"
  14. >Go back</q-btn>
  15. </div>
  16. </template>