1
0
Fork 0
gaiety-life/src/components/PostMeta.vue
2019-03-01 00:33:44 +01:00

21 lines
No EOL
341 B
Vue

<template>
<div class="post-meta">
Posted {{ post.date }}.
<template v-if="post.timeToRead">
<strong>{{ post.timeToRead }} min read.</strong>
</template>
</div>
</template>
<script>
export default {
props: ['post']
}
</script>
<style lang="scss">
.post-meta {
font-size: .8em;
opacity: .8;
}
</style>