Ben Lin
2024-06-18 ebbd788fbb2c0b45d4473798efc57eec8ba74a25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
  <PageWrapper title="带参数标签页" content="支持带参数多tab缓存">
    Current Param : {{ computedParams }}
    <br />
    Keep Alive
    <Input />
  </PageWrapper>
</template>
 
<script lang="ts" setup>
  import { computed, unref } from 'vue';
  import { useRouter } from 'vue-router';
 
  import { Input } from 'ant-design-vue';
  import { PageWrapper } from '@/components/Page';
 
  const { currentRoute } = useRouter();
 
  defineOptions({
    name: 'TestTab',
  });
 
  const computedParams = computed(() => unref(currentRoute).params);
</script>