Nuxt/examples/middleware/components/Visits.vue

41 lines
590 B
Vue
Raw Normal View History

2017-02-03 14:09:27 +00:00
<template>
<ul>
<li v-for="visit in visits"><i>{{ visit.date | hours }}</i> - {{ visit.path }}</li>
</ul>
</template>
<script>
export default {
computed: {
2017-10-31 13:43:55 +00:00
visits() {
2017-02-03 14:09:27 +00:00
return this.$store.state.visits.slice().reverse()
}
},
filters: {
2017-10-31 13:43:55 +00:00
hours(date) {
2017-02-03 14:09:27 +00:00
return date.split('T')[1].split('.')[0]
}
}
}
</script>
<style scoped>
ul {
position: fixed;
top: 20px;
right: 20px;
margin: 0;
padding: 0;
height: 100%;
overflow: auto;
list-style-type: none;
}
ul li {
padding: 2px 0;
}
ul li i {
color: gray;
font-style: normal;
}
</style>