aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.vue
blob: 216982f69fd7e7393222a66a09833f818a4188d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <div class="timeline">
    <a href="#" v-on:click.prevent='showNewStatuses()' v-if="timeline.newStatusCount > 0">
      <div class="new-status-notification">
        <p class="text-center" >
          {{timeline.newStatusCount}} new statuses
        </p>
      </div>
    </a>
    <status v-for="status in timeline.visibleStatuses" v-bind:status="status"></status>
  </div>
</template>
<script src="./timeline.js"></script>