You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/anchor/demo/customizeHighlight.vue

59 lines
1002 B

<docs>
---
order: 3
title:
zh-CN: 自定义锚点高亮
en-US: Customize the anchor highlight
---
## zh-CN
自定义锚点高亮
## en-US
Customize the anchor highlight.
</docs>
<template>
<a-anchor
:affix="false"
:get-current-anchor="getCurrentAnchor"
:items="[
{
key: '1',
href: '#components-anchor-demo-basic',
title: 'Basic demo',
},
{
key: '2',
href: '#components-anchor-demo-static',
title: 'Static demo',
},
{
key: '3',
href: '#api',
title: 'API',
children: [
{
key: '4',
href: '#anchor-props',
title: 'Anchor Props',
},
{
key: '5',
href: '#link-props',
title: 'Link Props',
},
],
},
]"
></a-anchor>
</template>
<script lang="ts" setup>
const getCurrentAnchor = () => {
return '#components-anchor-demo-static';
};
</script>