[Vuejs]-Firestore only show message from document

0👍

The simplest way is to change how you display the data in your view to:

<li v-for="msg in message">
  <v-chip color="primary" class="sent" style="display.block">{{ msg.message }}
</li>

Leave a comment