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

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

Contents

Class file image Download
<div class="thread-section"> <div class="thread-count"> <span v-show="unreadCount"> Unread threads: {{ unreadCount }} </span> </div> <ul class="thread-list"> <thread v-for="thread in threads" :key="thread.id" :thread="thread" :active="thread.id === currentThread.id" @switch-thread="switchThread"> </thread> </ul> </div>