mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
25 lines
410 B
JavaScript
25 lines
410 B
JavaScript
export default {
|
|
methods: {
|
|
toggle(
|
|
target,
|
|
vertical = 'bottom',
|
|
horizontal = 'left',
|
|
verticalOffset = 10,
|
|
horizontalOffset = 0,
|
|
value
|
|
) {
|
|
this.$refs.context.toggle(
|
|
target,
|
|
vertical,
|
|
horizontal,
|
|
verticalOffset,
|
|
horizontalOffset,
|
|
value
|
|
)
|
|
},
|
|
hide() {
|
|
this.$refs.context.hide()
|
|
},
|
|
},
|
|
}
|