diff --git a/components/ConfirmationModal.vue b/app/components/ConfirmationModal.vue similarity index 100% rename from components/ConfirmationModal.vue rename to app/components/ConfirmationModal.vue diff --git a/components/LoadingButton.vue b/app/components/LoadingButton.vue similarity index 100% rename from components/LoadingButton.vue rename to app/components/LoadingButton.vue diff --git a/components/ModalStack.vue b/app/components/ModalStack.vue similarity index 100% rename from components/ModalStack.vue rename to app/components/ModalStack.vue diff --git a/components/ModalTemplate.vue b/app/components/ModalTemplate.vue similarity index 100% rename from components/ModalTemplate.vue rename to app/components/ModalTemplate.vue diff --git a/components/NotificationModal.vue b/app/components/NotificationModal.vue similarity index 100% rename from components/NotificationModal.vue rename to app/components/NotificationModal.vue diff --git a/components/TextInputModal.vue b/app/components/TextInputModal.vue similarity index 100% rename from components/TextInputModal.vue rename to app/components/TextInputModal.vue diff --git a/composables/modal-stack.ts b/app/composables/modal-stack.ts similarity index 88% rename from composables/modal-stack.ts rename to app/composables/modal-stack.ts index f68665d..61d612d 100644 --- a/composables/modal-stack.ts +++ b/app/composables/modal-stack.ts @@ -1,7 +1,7 @@ import type { Component } from "vue"; -import ConfirmationModal from "../components/ConfirmationModal.vue"; -import NotificationModal from "../components/NotificationModal.vue"; -import TextInputModal from "../components/TextInputModal.vue"; +import ConfirmationModal from "../../components/ConfirmationModal.vue"; +import NotificationModal from "../../components/NotificationModal.vue"; +import TextInputModal from "../../components/TextInputModal.vue"; export type ModalCallbackType = ( event: ModalEvents[T], diff --git a/eslint.config.js b/eslint.config.js index be2024e..14d83d3 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,3 +1,3 @@ -import withNuxt from './.playground/.nuxt/eslint.config.mjs' +import withNuxt from '.playground/.nuxt/eslint.config.mjs' export default withNuxt()