10 lines
244 B
Vue
10 lines
244 B
Vue
<template>
|
|
<div class="error404">
|
|
<error code="404" title="哎呀,出错了!您访问的页面不存在…"></error>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import Error from './components/error.vue'
|
|
</script>
|