20 lines
320 B
Vue
20 lines
320 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
path: '/404'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<el-card class="m-5 w-screen-sm mt-[300px] mb-[200px] m-auto">
|
|
<!-- 异常状态 -->
|
|
<el-result
|
|
icon="warning"
|
|
:title="`404 页面不存在`"
|
|
/>
|
|
</el-card>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|