2022-03-27 04:31:32 +00:00
|
|
|
<template>
|
2022-04-13 10:15:26 +00:00
|
|
|
<div class="description" v-if="render.descriptionBodyText">
|
2022-04-21 02:38:22 +00:00
|
|
|
<yt-text-formatter :textRuns="render.descriptionBodyText.runs">
|
|
|
|
</yt-text-formatter>
|
2022-03-27 04:31:32 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-03-29 02:30:20 +00:00
|
|
|
<style scoped>
|
|
|
|
.description {
|
|
|
|
white-space: pre-line;
|
|
|
|
}
|
|
|
|
</style>
|
2022-03-27 04:31:32 +00:00
|
|
|
|
|
|
|
<script>
|
2022-04-21 02:38:22 +00:00
|
|
|
import YtTextFormatter from "~/components/UtilRenderers/YtTextFormatter.vue";
|
|
|
|
|
2022-03-27 04:31:32 +00:00
|
|
|
export default {
|
|
|
|
props: ["render"],
|
|
|
|
|
2022-04-21 02:38:22 +00:00
|
|
|
components: {
|
|
|
|
YtTextFormatter,
|
|
|
|
},
|
2022-03-27 04:31:32 +00:00
|
|
|
};
|
|
|
|
</script>
|