mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
27 lines
385 B
Markdown
27 lines
385 B
Markdown
<cn>
|
|
#### 固定状态改变的回调
|
|
可以获得是否固定的状态。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Callback
|
|
Callback with affixed state.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<a-affix :offsetTop="120" @change="change">
|
|
<a-button>120px to affix top</a-button>
|
|
</a-affix>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
change(affixed) {
|
|
console.log(affixed)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
```
|