16 lines
274 B
Vue
16 lines
274 B
Vue
|
<template>
|
||
|
<div class="d-flex flex-column justify-content-between mt-2 mb-2">
|
||
|
<div></div>
|
||
|
<div>
|
||
|
<span v-html="quote"></span>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
name: 'Quote',
|
||
|
props: ['quote']
|
||
|
}
|
||
|
</script>
|