NemoZhong / blog-nemo

0 stars 0 forks source link

TextArea录入的换行,渲染的时候保证样式一致 #18

Open NemoZhong opened 1 year ago

NemoZhong commented 1 year ago
    <Row>
        <Col span={3}>消息内容:</Col>
        <Col>{content ?? '--'}</Col>
      </Row>

textArea录入的内容,换行,空格会带上\n和'' ,回显直接渲染结果是 image

增加样式后 whiteSpace: 'pre'

image

image