fix: apply ESLint rule vue/component-name-in-template-casing

This commit is contained in:
iamsivin
2024-07-25 19:42:48 +05:30
parent 0008fca511
commit 3ce70f4e14
352 changed files with 1019 additions and 1037 deletions
@@ -37,8 +37,8 @@ export default {
<template>
<div>
<add-note @add="onAddNote" />
<contact-note
<AddNote @add="onAddNote" />
<ContactNote
v-for="note in notes"
:id="note.id"
:key="note.id"
@@ -50,7 +50,7 @@ export default {
/>
<div v-if="isFetching" class="text-center p-4 text-base">
<spinner size="" />
<Spinner size="" />
<span>{{ $t('NOTES.FETCHING_NOTES') }}</span>
</div>
<div v-else-if="!notes.length" class="text-center p-4 text-base">