HuanMengAdmin/admin-client/src/core/components/ExternalJump.vue
2024-07-18 02:27:50 +08:00

23 lines
402 B
Vue

<script lang="ts" setup>
import router from "@/core/router";
const { params } = router.currentRoute.value;
const path: string = params.path as string;
setTimeout(() => {
window.open(path, "_black");
}, 1000);
</script>
<template>
<div class="p-20 text-center">
<a target="_black" :href="path">{{ path }}</a>
</div>
</template>
<style lang="less" scoped>
a {
font-size: 25px;
}
</style>