19 lines
361 B
Vue
19 lines
361 B
Vue
|
<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>
|