auth-web/src/layout/redirect.vue

25 lines
401 B
Vue

<script lang="ts" setup>
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>