2
0
Fork 0
akkoma-fe-iceshrimp/src/components/timeline/timeline.vue
2016-10-28 15:40:13 +02:00

13 lines
437 B
Vue

<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>