mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-25 08:47:54 +00:00
12 lines
200 B
Vue
12 lines
200 B
Vue
<template>
|
|
<a class="element-preview__insert" @click="$emit('click')">
|
|
<i class="baserow-icon-plus"></i>
|
|
</a>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'InsertElementButton',
|
|
}
|
|
</script>
|