11 lines
202 B
Vue

<script setup lang="ts">
import Base from "@/views/Base.vue";
import Error from "@/components/error/Error.vue";
</script>
<template>
<Base>
<Error>404 Not Found</Error>
</Base>
</template>