ContentDescription.vue 271 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <template> <div :class="'text-subtitle-1 tw-text-justify font-weight-medium ' + className"> {{ content }} </div> </template> <script setup lang="ts"> defineProps({ content: String, className: { default: 'tw-mb-[64px]', type: String } }) </script>