Search code examples
javascriptvue.jsgoogle-cloud-firestorefirebase-console

The line break doesn't work in the firestore


I use vue 3 and firestore.

When I was writing, Even though I pressed the enter key to break the line, it only works to write space.

enter image description here

enter image description here

in firestore

enter image description here

This is my code.

<div class="form-group">
  <textarea class="form-control" cols="30" rows="10" v-model="content" required></textarea>
</div>

await db.collection('forms').add(
      {
        title: title.value, content: content.value, createdAt, updatedAt, uid, name, views
      }
    )

How can I use line break?


Solution

  • I just added style="white-space:pre-line" and it works!