ant-design-vue/components/affix/demo/basic.md

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>
```