File: app/components/test-chat/components/message_section/message_section.html

Recommend this page to a friend!
  Classes of Sergey Beskorovayniy   Vuex Examples   app/components/test-chat/components/message_section/message_section.html   Download  
File: app/components/test-chat/components/message_section/message_section.html
Role: Auxiliary data
Content type: text/plain
Description: Template
Class: Vuex Examples
Example apps using Vuex state management pattern
Author: By
Last change: Update of app/components/test-chat/components/message_section/message_section.html
Date: 2 years ago
Size: 371 bytes
 

Contents

Class file image Download
<div class="message-section"> <h3 class="message-thread-heading">{{ thread.name }}</h3> <ul class="message-list" ref="list"> <message v-for="message in sortedMessages" :key="message.id" :message="message"> </message> </ul> <textarea class="message-composer" @keyup.enter="sendMessage"></textarea> </div>