11 lines
202 B
Vue
Raw Normal View History

2024-03-26 01:27:26 +05:00
<script setup lang="ts">
import Base from "@/views/Base.vue";
import Error from "@/components/error/Error.vue";
2024-03-26 01:27:26 +05:00
</script>
<template>
<Base>
<Error>404 Not Found</Error>
2024-03-26 01:27:26 +05:00
</Base>
</template>