mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
17 lines
422 B
Vue
17 lines
422 B
Vue
<script lang="ts" setup>
|
|
import BasicButton from '@/components/BasicButton/index.vue';
|
|
import { useRouter } from '@/hooks/router';
|
|
|
|
const router = useRouter();
|
|
const jumpDetail = () => {
|
|
router.push('/pagesB/detail/index?page=1&limit=20');
|
|
};
|
|
</script>
|
|
<template>
|
|
<view>
|
|
<view> Test2 </view>
|
|
<BasicButton @click="jumpDetail">Detail → </BasicButton>
|
|
</view>
|
|
</template>
|
|
<style scoped></style>
|