<rich-text nodes="{{nodes}}"></rich-text>
第一种换行符不识别
nodes: [{
{
name: "div",
attrs: {
class: "content",
style: "width: 100%;font-size: 16px;"
},
children: [{
type: 'text',
text: '第一行文本\n第二行文本'
}],
},
}],
第二种换行符不识别
{
name: "div",
attrs: {
class: "content",
style: "width: 100%;font-size: 16px;"
},
children: [{
type: 'text',
text: '第一行文本<br/>第二行文本'
}],
},
请问有谁知道怎么才能换行呢?
word-wrap: break-word;
white-space: pre-line
word-break: break-all