2020-08-27 17:18:57 +08:00

15 lines
284 B
Markdown

```html
<template>
<Back-top :target="getTarget" :height-to-show="100"></Back-top>
</template>
<script>
export default {
methods: {
getTarget () {
return document.getElementsByClassName('right-panel')[0]
}
}
}
</script>
```