journal-media-vue/src/pages/NotFoundPage.vue
2025-02-21 23:23:33 +01:00

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>