mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-24 05:03:02 +00:00
11 lines
186 B
Vue
11 lines
186 B
Vue
<template>
|
|
<a class="element__insert" @click="$emit('click')">
|
|
<i class="fas fa-plus"></i>
|
|
</a>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'InsertElementButton',
|
|
}
|
|
</script>
|