1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-20 21:59:40 +02:00
mealie/frontend/src/pages/404Page.vue

23 lines
462 B
Vue
Raw Normal View History

2020-12-24 16:37:38 -09:00
<template>
<div class="text-center">
<v-row>
<v-col cols="2"></v-col>
<v-col>
<v-card height="">
<v-card-text>
<h1>404 No Page Found</h1>
</v-card-text>
<v-btn text block @click="$router.push('/')"> Take me Home </v-btn>
</v-card>
</v-col>
<v-col cols="2"></v-col>
</v-row>
</div>
</template>
<script>
export default {};
</script>
<style lang="scss" scoped>
</style>