fix: apply ESLint rule vue/custom-event-name-casing

This commit is contained in:
iamsivin
2024-07-25 23:40:54 +05:30
parent 2ef9274450
commit ecb0b4a4f4
144 changed files with 509 additions and 515 deletions
@@ -123,7 +123,7 @@ export default {
getKeyboardEvents() {
return {
'Alt+KeyO': {
action: () => this.$emit('contact-panel-toggle'),
action: () => this.$emit('contactPanelToggle'),
},
};
},
@@ -160,7 +160,7 @@ export default {
variant="link"
color-scheme="secondary"
class="[&>span]:overflow-hidden [&>span]:whitespace-nowrap [&>span]:text-ellipsis min-w-0"
@click.prevent="$emit('contact-panel-toggle')"
@click.prevent="$emit('contactPanelToggle')"
>
<span
class="text-base font-medium leading-tight text-slate-900 dark:text-slate-100"
@@ -191,7 +191,7 @@ export default {
class="p-0"
size="small"
variant="link"
@click="$emit('contact-panel-toggle')"
@click="$emit('contactPanelToggle')"
>
{{ contactPanelToggleText }}
</woot-button>