11 lines
192 B
Vue
11 lines
192 B
Vue
|
<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>
|