This commit is contained in:
dhr
2025-09-05 15:11:21 +08:00
parent c35a75d030
commit eb895793dd
4 changed files with 150 additions and 133 deletions

View File

@ -0,0 +1,18 @@
<template>
<div class="text-center py-10">
<el-button type="primary" @click="handleGoBack">返回上一页</el-button>
</div>
</template>
<script setup name="EmptyPage" lang="ts">
import { useRouter } from 'vue-router';
const router = useRouter();
// 返回上一页
const handleGoBack = () => {
router.go(-1);
};
</script>
<style scoped></style>