mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
27 lines
678 B
Vue
27 lines
678 B
Vue
<script lang="ts" setup>
|
|
import BasicButton from '@/components/BasicButton/index.vue';
|
|
import AppProvider from '@/components/AppProvider/inedx.vue';
|
|
import { useRouter } from '@/hooks/router';
|
|
|
|
const router = useRouter();
|
|
const jumpList1 = () => {
|
|
router.push('/pagesA/list/test1/index?key=words&page=1&limit=15');
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<AppProvider>
|
|
<view class="container"> 页面构建中... </view>
|
|
<view class="flex-row justify-center">
|
|
<BasicButton @click="jumpList1">List1 → </BasicButton>
|
|
</view>
|
|
</AppProvider>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.container {
|
|
padding: 128rpx 0;
|
|
text-align: center;
|
|
}
|
|
</style>
|