如果只有\n,可以用替换:
this.rightLog = res.data.consoleLog.replace(/\n/gm, "<br/>")
可以用样式及pre标签转译
第一种添加样式
<p style="white-space: pre-wrap;" v-html="rightLog" ></p>
第二种添加pre标签
<pre><p v-html="rightLog"></p></pre>