13 lines
246 B
Vue
13 lines
246 B
Vue
<script setup lang="ts">
|
|
import { onMounted } from "vue";
|
|
// DEBUG
|
|
onMounted(() => {
|
|
console.debug("NotFoundPage.vue -- Mounted");
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<section class="stack" id="404">
|
|
<h2>404</h2>
|
|
</section>
|
|
</template>
|