1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-12 08:08:48 +00:00
bramw_baserow/web-frontend/modules/builder/components/elements/baseComponents/ABParagraph.vue
2024-07-30 08:15:47 +00:00

15 lines
156 B
Vue

<template>
<p class="ab-text">
<slot />
</p>
</template>
<script>
/**
* @typedef ABImage
*/
export default {
name: 'ABParagraph',
}
</script>