rename use-case to modules
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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<{
|
||||
|
||||
Reference in New Issue
Block a user