public/error.vue

11 lines
190 B
Vue
Raw Normal View History

2022-08-10 18:47:39 -04:00
<script setup lang="ts">
2022-08-10 18:56:06 -04:00
import Default from "./layouts/default.vue";
2022-08-10 19:01:20 -04:00
import FourOhFour from "./pages/404.vue";
2022-08-10 18:47:39 -04:00
</script>
<template>
<Default>
2022-08-10 19:01:20 -04:00
<FourOhFour />
2022-08-10 18:47:39 -04:00
</Default>
</template>