21 lines
596 B
Vue
21 lines
596 B
Vue
<template>
|
||
<div class="not-container">
|
||
<img src="@/assets/images/500.png" class="not-img" alt="500" />
|
||
<div class="not-detail">
|
||
<h2>500</h2>
|
||
<h4>抱歉,您的网络不见了~🤦♂️🤦♀️</h4>
|
||
<el-button type="primary" @click="router.push(HOME_URL)"> 返回首页 </el-button>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts" name="500">
|
||
import { HOME_URL } from "@/config";
|
||
import { useRouter } from "vue-router";
|
||
const router = useRouter();
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
@use "./index.scss";
|
||
</style>
|