mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-13 07:35:53 +00:00
15 lines
283 B
Vue
15 lines
283 B
Vue
<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 Error</h1>
|
|
<p>Something went wrong.</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps({ is404: Boolean })
|
|
</script>
|