1
This commit is contained in:
24
error.vue
Normal file
24
error.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<script setup>
|
||||
defineProps({
|
||||
error: Object
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<el-card class="m-5 w-screen-sm mt-[150px] m-auto">
|
||||
<!-- 异常状态 -->
|
||||
<el-result
|
||||
icon="warning"
|
||||
:title="`${error.message || '404 页面不存在'}`"
|
||||
/>
|
||||
</el-card>
|
||||
<div class="text-center py-10 text-gray-400">
|
||||
Powered by <a rel="nofollow" href="https://website.websoft.top" target="_blank" class="text-gray-400">云·企业官网</a>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user