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.
15 lines
294 B
15 lines
294 B
<!-- 该组件只作为路由中间件 跳转使用 不参与任何业务开发 -->
|
|
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onMounted } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
|
|
const router = useRouter()
|
|
|
|
onMounted(() => {
|
|
router.back()
|
|
})
|
|
</script>
|
|
|