vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
60 lines
1.1 KiB
60 lines
1.1 KiB
<docs> |
|
--- |
|
order: 2 |
|
title: |
|
zh-CN: 自定义 click 事件 |
|
en-US: Customize the click event |
|
--- |
|
|
|
## zh-CN |
|
|
|
点击锚点不记录历史。 |
|
|
|
## en-US |
|
|
|
Clicking on an anchor does not record history. |
|
</docs> |
|
|
|
<template> |
|
<a-anchor |
|
:affix="false" |
|
: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', |
|
}, |
|
], |
|
}, |
|
]" |
|
@click="handleClick" |
|
></a-anchor> |
|
</template> |
|
|
|
<script lang="ts" setup> |
|
import type { AnchorProps } from 'ant-design-vue'; |
|
const handleClick: AnchorProps['onClick'] = (e, link) => { |
|
e.preventDefault(); |
|
console.log(link); |
|
}; |
|
</script>
|
|
|