28 lines
629 B
Markdown
28 lines
629 B
Markdown
![]() |
<cn>
|
||
|
#### 基本
|
||
|
最简单的用法。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### basic
|
||
|
The simplest usage.
|
||
|
</us>
|
||
|
|
||
|
```vue
|
||
|
<template>
|
||
|
<a-anchor>
|
||
|
<a-anchor-link href="#components-anchor-demo-basic" title="Basic demo" />
|
||
|
<a-anchor-link href="#components-anchor-demo-static" title="Static demo" />
|
||
|
<a-anchor-link
|
||
|
href="#components-anchor-demo-basic"
|
||
|
title="Basic demo with Target"
|
||
|
target="_blank"
|
||
|
/>
|
||
|
<a-anchor-link href="#API" title="API">
|
||
|
<a-anchor-link href="#Anchor-Props" title="Anchor Props" />
|
||
|
<a-anchor-link href="#Link-Props" title="Link Props" />
|
||
|
</a-anchor-link>
|
||
|
</a-anchor>
|
||
|
</template>
|
||
|
```
|