mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
25 lines
415 B
JavaScript
25 lines
415 B
JavaScript
export default {
|
|
data () {
|
|
return {
|
|
showLightBar: false,
|
|
lightBarTop: 0
|
|
}
|
|
},
|
|
computed: {
|
|
lightBarStyleTop () {
|
|
return this.lightBarTop + 'px'
|
|
}
|
|
},
|
|
methods: {
|
|
updateLightBarPosition (el) {
|
|
if (this.active) {
|
|
this.showLightBar = true
|
|
this.lightBarTop = el.offsetTop
|
|
}
|
|
},
|
|
hideLightBar () {
|
|
this.showLightBar = false
|
|
}
|
|
}
|
|
}
|