czydojade/resources/components/picker.html
2018-09-17 22:46:02 +02:00

12 lines
430 B
HTML

<div class="picker">
<ul class="picker__stops list-underlined">
<li v-for="stop in stops" :key="stop.id" class="d-flex align-items-center">
<button @click="remove(stop)" class="btn btn-action">
<fa :icon="['fal', 'times']" />
</button>
<stop :stop="stop" class="flex-grow-1"></stop>
</li>
</ul>
<stop-finder @select="add" :blacklist="stops"/>
</div>