rename use-case to modules

This commit is contained in:
Julien Calixte
2023-04-09 12:34:43 +02:00
parent 5719fabac1
commit cd49c4cf0a
20 changed files with 17 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
<script setup lang="ts">
import TaskList from '@/use-cases/task/components/TaskList.vue'
import { useTaskStore } from '@/use-cases/task/stores/useTask.store'
import TaskList from '@/modules/task/components/TaskList.vue'
import { useTaskStore } from '@/modules/task/stores/useTask.store'
const taskStore = useTaskStore()
</script>

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import NewTaskForm from '@/use-cases/task/components/NewTaskForm.vue'
import NewTaskForm from '@/modules/task/components/NewTaskForm.vue'
</script>
<template>

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import { useTaskStore } from '@/use-cases/task/stores/useTask.store'
import { useTaskStore } from '@/modules/task/stores/useTask.store'
import { computed } from 'vue'
const props = defineProps<{