czydojade/resources/components/stop/history.html
2020-11-01 12:11:20 +01:00

12 lines
466 B
HTML

<ul class="list-underlined history" v-if="all.length > 0">
<li v-for="entry in all" class="history__entry">
<picker-stop :stop="entry.stop" class="flex-grow-1 finder__stop">
<template v-slot:primary-action>
<button @click="select(entry.stop, $event)" class="btn btn-action stretched-link">
<ui-icon icon="history" />
</button>
</template>
</picker-stop>
</li>
</ul>