mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-05-02 12:28:10 +00:00
Resolved ALL eslint issues for project
This commit is contained in:
@@ -4,8 +4,8 @@
|
||||
v-for="option in options"
|
||||
:key="option"
|
||||
class="toggle-button"
|
||||
@click="toggleTo(option)"
|
||||
:class="selected === option ? 'selected' : null"
|
||||
@click="() => toggleTo(option)"
|
||||
>
|
||||
{{ option }}
|
||||
</button>
|
||||
@@ -13,8 +13,7 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, defineProps, defineEmits } from "vue";
|
||||
import type { Ref } from "vue";
|
||||
import { defineProps, defineEmits } from "vue";
|
||||
|
||||
interface Props {
|
||||
options: string[];
|
||||
|
||||
Reference in New Issue
Block a user