2022-09-30 16:09:01 +08:00

14 lines
324 B
Vue

<template>
<div text-center>
I prove that you have made the ju mp test2.
<n-button @click="routerPush('/test/test2/detail')">跳转详情子页</n-button>
</div>
</template>
<script setup lang="ts">
import { useAppRouter } from '@/hook';
const { routerPush } = useAppRouter();
</script>
<style scoped></style>