24 lines
335 B
Markdown
24 lines
335 B
Markdown
<cn>
|
|
#### 基本
|
|
最简单的用法。
|
|
</cn>
|
|
|
|
<us>
|
|
#### basic
|
|
The simplest usage.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div>
|
|
<a-affix>
|
|
<a-button type="primary">Affix top</a-button>
|
|
</a-affix>
|
|
<br />
|
|
<a-affix :offsetBottom="0">
|
|
<a-button type="primary">Affix bottom</a-button>
|
|
</a-affix>
|
|
</div>
|
|
</template>
|
|
```
|