mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-09 15:17:50 +00:00
14 lines
275 B
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>
|