fix(lint): automatically fix lint warnings

This commit is contained in:
Matteo Pagliazzi
2020-07-25 18:56:19 +02:00
parent aaf32cc09b
commit 79c64763ac
13 changed files with 263 additions and 203 deletions

View File

@@ -1,9 +1,11 @@
<template>
<button class="toggle-checkbox"
<button
class="toggle-checkbox"
:class="{checked: isChecked}"
@click="isChecked = !isChecked"
type="button"
:disabled="disabled">
:disabled="disabled"
@click="isChecked = !isChecked"
>
{{ text }}
</button>
</template>