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