Extra contents beyond WaniKani
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
281 B

<template>
<div v-if="is404">
<h1>404 Page Not Found</h1>
<p>This page could not be found.</p>
</div>
<div v-else>
<h1>500 Internal Server Error</h1>
<p>Something went wrong.</p>
</div>
</template>
<script lang="ts" setup>
defineProps(['is404'])
</script>