Browse Source

Fix btn emit

dev
philipp lang 2 years ago
parent
commit
2ff3dab986
  1. 2
      assets/js/components/VBtn.vue

2
assets/js/components/VBtn.vue

@ -2,7 +2,7 @@
<button <button
:type="type" :type="type"
class="bg-primary px-6 py-3 leading-none rounded text-lg font-semibold text-white disabled:bg-gray-300" class="bg-primary px-6 py-3 leading-none rounded text-lg font-semibold text-white disabled:bg-gray-300"
@click.prevent="$emit('click', $event)"
@click="$emit('click', $event)"
> >
<slot></slot> <slot></slot>
</button> </button>

Loading…
Cancel
Save