mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 21:59:40 +02:00
23 lines
462 B
Vue
23 lines
462 B
Vue
|
<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>
|