We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e103b commit 2542768Copy full SHA for 2542768
src/components/email/Header.vue
@@ -10,7 +10,7 @@ const { email, size } = defineProps<{
10
size?: number
11
}>()
12
13
-const emit = defineEmits<{
+defineEmits<{
14
(e: 'delete'): void
15
16
src/views/Home.vue
@@ -142,7 +142,7 @@ const copyToClipboard = (text: string) => {
142
<div class="bg-gray-50/80 px-4 py-3 border-b border-gray-100">
143
<div class="flex gap-4 overflow-x-auto no-scrollbar">
144
<button
145
- v-for="(config, key) in configs"
+ v-for="(_config, key) in configs"
146
:key="key"
147
@click="activeTab = key"
148
class="text-sm transition-colors whitespace-nowrap capitalize"
0 commit comments