mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-01 23:32:34 +08:00
17 lines
368 B
Markdown
17 lines
368 B
Markdown
```html
|
|
<template>
|
|
<Affix :target = "getTarget">
|
|
<WB-button type="primary" long>默认距离顶部0px(此处为.right-panel,默认为window)</span>
|
|
</Affix>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
getTarget () {
|
|
return document.getElementsByClassName('right-panel')[0]
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
```
|