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