This commit is contained in:
2023-04-16 22:33:44 +08:00
commit 694a7a6307
914 changed files with 217310 additions and 0 deletions

14
src/views/redirect/index.vue Executable file
View File

@ -0,0 +1,14 @@
<template>
<div></div>
</template>
<script setup>
import { useRoute, useRouter } from 'vue-router'
const route = useRoute();
const router = useRouter();
const { params, query } = route
const { path } = params
router.replace({ path: '/' + path, query })
</script>