This repo contains vue.js components for Circuit that are used in Circuit SDK examples, specificially in https://stackblitz.com example apps that allow ES6 imports using webpack.
The components circuit-logon.js and conversation-template.js are legacy components. Don't use those.
Login/logout functionality. Show a header with username and avatar when logged in.
<circuit-logon
:client="client"
@logon="onLogon"
@logout="onLogout"
title="Template">
</circuit-logon>
Listview of conversations. Raises change event when conversation is selected.
<circuit-conversation-list
:client="client"
:type="'GROUP'"
@change="selectedConversation=$event">
</circuit-conversation-list>