feat(components): align component name casing card
This commit is contained in:
parent
f8f05acc2d
commit
d1d85b43f1
@ -1,5 +1,5 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import Card from './card.vue'
|
import Card from './Card.vue'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -84,7 +84,7 @@ import ReminderPeriod from '@/components/tasks/partials/reminder-period.vue'
|
|||||||
import Popup from '@/components/misc/popup.vue'
|
import Popup from '@/components/misc/popup.vue'
|
||||||
|
|
||||||
import TaskReminderModel from '@/models/taskReminder'
|
import TaskReminderModel from '@/models/taskReminder'
|
||||||
import Card from '@/components/misc/card.vue'
|
import Card from '@/components/misc/Card.vue'
|
||||||
import SimpleButton from '@/components/input/SimpleButton.vue'
|
import SimpleButton from '@/components/input/SimpleButton.vue'
|
||||||
import {useDebounceFn} from '@vueuse/core'
|
import {useDebounceFn} from '@vueuse/core'
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ import cypress from '@/directives/cypress'
|
|||||||
import FontAwesomeIcon from '@/components/misc/Icon'
|
import FontAwesomeIcon from '@/components/misc/Icon'
|
||||||
import XButton from '@/components/input/button.vue'
|
import XButton from '@/components/input/button.vue'
|
||||||
import Modal from '@/components/misc/modal.vue'
|
import Modal from '@/components/misc/modal.vue'
|
||||||
import Card from '@/components/misc/card.vue'
|
import Card from '@/components/misc/Card.vue'
|
||||||
|
|
||||||
export const setupVue3 = defineSetupVue3(({ app }) => {
|
export const setupVue3 = defineSetupVue3(({ app }) => {
|
||||||
// Add Pinia store
|
// Add Pinia store
|
||||||
|
@ -46,7 +46,7 @@ import cypress from '@/directives/cypress'
|
|||||||
import FontAwesomeIcon from '@/components/misc/Icon'
|
import FontAwesomeIcon from '@/components/misc/Icon'
|
||||||
import Button from '@/components/input/button.vue'
|
import Button from '@/components/input/button.vue'
|
||||||
import Modal from '@/components/misc/modal.vue'
|
import Modal from '@/components/misc/modal.vue'
|
||||||
import Card from '@/components/misc/card.vue'
|
import Card from '@/components/misc/Card.vue'
|
||||||
|
|
||||||
// We're loading the language before creating the app so that it won't fail to load when the user's
|
// We're loading the language before creating the app so that it won't fail to load when the user's
|
||||||
// language file is not yet loaded.
|
// language file is not yet loaded.
|
||||||
|
2
frontend/src/types/global-components.d.ts
vendored
2
frontend/src/types/global-components.d.ts
vendored
@ -4,7 +4,7 @@ import type { Notifications } from '@kyvg/vue3-notification'
|
|||||||
import type { FontAwesomeIcon as FontAwesomeIconFixedTypes } from './vue-fontawesome'
|
import type { FontAwesomeIcon as FontAwesomeIconFixedTypes } from './vue-fontawesome'
|
||||||
import type XButton from '@/components/input/button.vue'
|
import type XButton from '@/components/input/button.vue'
|
||||||
import type Modal from '@/components/misc/modal.vue'
|
import type Modal from '@/components/misc/modal.vue'
|
||||||
import type Card from '@/components/misc/card.vue'
|
import type Card from '@/components/misc/Card.vue'
|
||||||
|
|
||||||
// Here we define globally imported components
|
// Here we define globally imported components
|
||||||
// See:
|
// See:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user