1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-20 07:29:36 +00:00

Resolve "I can add static Elements to a Builder application page"

This commit is contained in:
Jrmi 2023-03-17 10:59:23 +00:00
parent 3e43b4fb4f
commit 1eb25a29a8
95 changed files with 4876 additions and 353 deletions
web-frontend/modules/builder/components/elements

View file

@ -0,0 +1,14 @@
<template>
<a class="select__footer-create-link" v-on="$listeners">
<span>
<i class="select__footer-create-icon fas fa-stream"></i>
{{ $t('addElementButton.label') }}
</span>
</a>
</template>
<script>
export default {
name: 'AddElementButton',
}
</script>