mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
14 lines
324 B
Vue
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>
|