feat: use <button> instead of <div> for buttons

This commit is contained in:
Settel 2022-07-22 21:38:05 +02:00
parent d594205fb6
commit 449c49c3b7

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="button" :class="{ disabled }" @click="click"> <button class="button" :class="{ disabled }" @click="click">
<slot /> <slot />
</div> </button>
</template> </template>
<script> <script>