Prevent page navigation on dropdown menu links

This commit is contained in:
Matt Isenhower
2017-08-05 17:21:37 -07:00
parent 56c55f2633
commit f3e082eeea

View File

@@ -10,7 +10,7 @@
</div>
<div class="dropdown-menu" role="menu">
<div class="dropdown-content">
<a href="#" class="dropdown-item" v-for="option in options" :class="{ 'is-active': option.key == value }" @click="$emit('input', option.key)">
<a href="#" class="dropdown-item" v-for="option in options" :class="{ 'is-active': option.key == value }" @click.prevent="$emit('input', option.key)">
{{ option.name }}
</a>
</div>