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.
in firestore
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?
I just added style="white-space:pre-line" and it works!