mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-25 00:46:46 +00:00
15 lines
276 B
Vue
15 lines
276 B
Vue
<template functional>
|
|
<a
|
|
class="grid-view__row-more"
|
|
@click="listeners['edit-modal'] && listeners['edit-modal']()"
|
|
>
|
|
<i class="iconoir-expand"></i>
|
|
</a>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'GridViewRowExpandButton',
|
|
functional: true,
|
|
}
|
|
</script>
|