mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
* CaptionedImage component Component for captioned images * dreammall in-product image padding in-product image * Ocelot images - Use Logo as main image for ocelot - Have a captioned in-product image - Fix some texts regarding ocelot
17 lines
277 B
Vue
17 lines
277 B
Vue
<template>
|
|
<figure>
|
|
<img :src="src" alt="" :width="width"/>
|
|
<figcaption>{{ caption }}</figcaption>
|
|
</figure>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: ['src', 'caption', 'width'],
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
figcaption {
|
|
font-style: italic;
|
|
}
|
|
</style> |