1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-11 07:39:00 +00:00
bramw_baserow/web-frontend/modules/core/mixins/applicationContext.js
2024-07-25 17:05:43 +00:00

24 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()
},
},
}