11 lines
192 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.vue";
</script>
<template>
<Base>
<Error>Not Found</Error>
</Base>
</template>