2021-11-01 21:23:57 +11:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<v-container>
|
2022-02-05 14:39:37 +11:00
|
|
|
<v-card elevation="8" class="rounded-xl">
|
2021-11-01 21:23:57 +11:00
|
|
|
<v-container class="text-center">
|
|
|
|
<p class="text-h4">Not Found.</p>
|
|
|
|
<p class="subtitle">This route does not exist.</p>
|
|
|
|
<v-btn text @click="$router.push('/')">Go Home</v-btn>
|
|
|
|
</v-container>
|
|
|
|
</v-card>
|
|
|
|
</v-container>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: "NotFound"
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2022-02-05 14:39:37 +11:00
|
|
|
<style scoped></style>
|