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

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