You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
403 B
Vue
25 lines
403 B
Vue
<script setup lang="ts">
|
|
import { unref } from "vue";
|
|
import { useRouter } from "vue-router";
|
|
|
|
defineOptions({
|
|
name: "Redirect"
|
|
});
|
|
|
|
const { currentRoute, replace } = useRouter();
|
|
|
|
const { params, query } = unref(currentRoute);
|
|
const { path } = params;
|
|
|
|
const _path = Array.isArray(path) ? path.join("/") : path;
|
|
|
|
replace({
|
|
path: "/" + _path,
|
|
query
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div />
|
|
</template>
|