refactor: migrate simple composable usage syntax to pinia store usage syntax

Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
Pranav C
2023-03-10 00:29:06 +05:30
parent 79e23a98b0
commit 500979d135
38 changed files with 108 additions and 42 deletions

View File

@@ -31,7 +31,9 @@ const props = defineProps<{
const emit = defineEmits(['baseUpdated'])
const { project, loadProject } = useProject()
const projectStore = useProject()
const { loadProject } = projectStore
const { project } = projectStore
const useForm = Form.useForm