aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation/conversation.vue
blob: a150ece3279f5ecfaae3292291b7a2ad0391220a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div class="timeline panel panel-default base00-background">
    <div class="panel-heading base01-background base04" style="justify-content:space-between;">
      Conversation
      <div v-if="collapsable">
        <small><a href="#" @click.prevent="$emit('toggleExpanded')">Collapse</a></small>
      </div>
    </div>
    <div class="panel-body">
      <div class="timeline">
        <status v-for="status in conversation" :key="status.id" v-bind:statusoid="status":expandable='false'></status>
      </div>
    </div>
  </div>
</template>

<script src="./conversation.js"></script>