是否可以在Vue.js的广告位字符串中添加HTML?

时间:2018-06-19 23:49:18

标签: vue.js

我已经使用Vue.js制作了一个扩展器组件,我需要换行一些答案。如何将换行标签正确添加到广告位字符串中?到目前为止,它们自然显示为字符串:

<expander identifier="pricing" question="This a question?" answer="This is an answer that really needs a <br/> tag."></expander>

1 个答案:

答案 0 :(得分:1)

您可以将white-space: pre-wrap样式应用于将答案字符串呈现到的元素,然后可以在答案字符串中使用换行符,如下所示:

<expander :answer="'This is an answer that really needs a \n tag.'"></expander>