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

Recommend this page to a friend!
  Classes of Sergey Beskorovayniy   Vuex Examples   app/components/test-chat/components/thread/thread.html   Download  
File: app/components/test-chat/components/thread/thread.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/thread/thread.html
Date: 2 years ago
Size: 347 bytes
 

Contents

Class file image Download
<li class="thread-list-item" :class="{ active: active }" @click="$emit('switch-thread', thread.id)"> <h5 class="thread-name">{{ thread.name }}</h5> <div class="thread-time"> {{ thread.lastMessage.timestamp | time }} </div> <div class="thread-last-message"> {{ thread.lastMessage.text }} </div> </li>