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

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

Contents

Class file image Download
define([ 'text!app/components/test-chat/components/thread/thread.html' ], function (template) { // Create component object var ChatThread = { name: 'ChatThread', template: template, props: { thread: Object, active: Boolean } }; return ChatThread; });