10 lines
174 B
Vue
10 lines
174 B
Vue
<template>
|
|
<div class="not-found view">
|
|
<NotFound />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import NotFound from '@/components/Common/NotFound.vue'
|
|
</script>
|