frequi_origin/src/views/Error404.vue

14 lines
322 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>
<p>Don't worry, you can head back to <router-link to="/">the main page</router-link>.</p>
</div>
</template>
<script lang="ts">
export default {};
</script>
<style scoped></style>