2017-02-03 14:09:27 +00:00
|
|
|
<template>
|
|
|
|
<ul>
|
2017-11-26 13:40:57 +00:00
|
|
|
<li v-for="(visit, index) in visits" :key="index"><i>{{ visit.date | hours }}</i> - {{ visit.path }}</li>
|
2017-02-03 14:09:27 +00:00
|
|
|
</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>
|