Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 28, 2022 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/623e867f819885ac777ed9fa6e3cdf6a to your computer and use it in GitHub Desktop.
Save parzibyte/623e867f819885ac777ed9fa6e3cdf6a to your computer and use it in GitHub Desktop.
<template>
<div style="margin-bottom: 1cm; break-inside: avoid-page">
<div style="text-align: justify" v-html="obtenerHtml()"></div>
<div style="margin-left: 10px">
<span
v-show="respuesta.contenido"
style="margin-right: 10px"
v-for="(respuesta, indiceRespuesta) in pregunta.respuestas"
:key="'respuesta_' + indiceRespuesta"
>
{{ respuesta.inciso }}) {{ respuesta.contenido }}</span
>
</div>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment