mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-23 13:03:07 +00:00
15 lines
177 B
Vue
15 lines
177 B
Vue
<template>
|
|
<div />
|
|
</template>
|
|
|
|
<script setup>
|
|
import { useRouter } from 'vue-router'
|
|
|
|
defineOptions({
|
|
name: 'Reload'
|
|
})
|
|
|
|
const router = useRouter()
|
|
router.go(-1)
|
|
</script>
|