2022-05-03 14:52:04 +02:00
|
|
|
<template>
|
2022-05-11 14:48:04 +02:00
|
|
|
<div class="d-flex flex-column justify-content-between box mt-2 p-3 mb-2">
|
2022-05-03 14:52:04 +02:00
|
|
|
<div></div>
|
|
|
|
<div>
|
|
|
|
<span v-html="quote"></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Quote',
|
|
|
|
props: ['quote']
|
|
|
|
}
|
2022-05-11 14:48:04 +02:00
|
|
|
</script>
|