1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <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>
|
|