This commit is contained in:
2023-06-08 21:09:28 +08:00
parent d778ceab61
commit f8947d332a
158 changed files with 17210 additions and 259 deletions

View File

@@ -0,0 +1,13 @@
<template>
<div></div>
</template>
<script lang="ts" setup>
import { useRouter, useRoute } from "vue-router"
const router = useRouter()
const route = useRoute()
const gotoPath = route.params.path as string
router.replace({ path: gotoPath })
</script>
<style lang="less" scoped></style>