You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
450 B
14 lines
450 B
<script setup lang="ts">
|
|
import noExist from "/@/assets/status/404.svg?component";
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex justify-center items-center h-screen-sm">
|
|
<noExist />
|
|
<div class="ml-12">
|
|
<p class="font-medium text-4xl mb-4">404</p>
|
|
<p class="mb-4 text-gray-500">抱歉,你访问的页面不存在</p>
|
|
<el-button type="primary" @click="$router.push('/')">返回首页</el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|