17 lines
356 B
Vue
17 lines
356 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { unref } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
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>
|