frequi_origin/src/views/Error404.vue

21 lines
450 B
Vue
Raw Normal View History

<template>
<div>
2020-07-19 17:29:07 +00:00
<h1 class="mb-5">404 Error.</h1>
<p class="h4">Ahhhhhhhh! The page you are looking for does not exist.</p>
2021-11-14 10:11:52 +00:00
<p>
Don't worry, you can head back to
<router-link to="/"> <span>the main page</span> </router-link>.
</p>
</div>
</template>
<script lang="ts">
2022-04-17 08:02:29 +00:00
import { defineComponent } from '@vue/composition-api';
2020-10-25 09:35:19 +00:00
2022-04-17 08:02:29 +00:00
export default defineComponent({
name: 'Error404',
});
</script>
<style scoped></style>