1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-09 15:17:50 +00:00
bramw_baserow/web-frontend/modules/database/components/view/grid/GridViewRowExpandButton.vue

14 lines
275 B
Vue

<template functional>
<a
class="grid-view__row-more"
@click="listeners['edit-modal'] && listeners['edit-modal']()"
>
<i class="fas fa-expand"></i>
</a>
</template>
<script>
export default {
name: 'GridViewRowExpandButton',
functional: true,
}
</script>