before urpgrade to vue 3

This commit is contained in:
2022-05-06 13:52:18 +02:00
parent b60c4ffd74
commit 1b4ca82754
31 changed files with 1424 additions and 388 deletions

View File

@@ -0,0 +1,16 @@
<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>