mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-27 14:06:13 +00:00
33 lines
494 B
Vue
33 lines
494 B
Vue
<template>
|
|
<div class="ab-image">
|
|
<img class="ab-image__img" :alt="alt" :src="src" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/**
|
|
* @typedef ABImage
|
|
*/
|
|
|
|
export default {
|
|
name: 'ABImage',
|
|
props: {
|
|
/**
|
|
* @type {String} - Alternative text to image.
|
|
*/
|
|
alt: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
/**
|
|
* @type {String} - Image url.
|
|
*/
|
|
src: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
},
|
|
}
|
|
</script>
|