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

@@ -33,7 +33,9 @@ const emit = defineEmits(['baseCreated'])
const { appInfo } = useGlobal()
const { project, loadProject } = useProject()
const projectStore = useProject()
const { loadProject } = projectStore
const { project } = projectStore
const useForm = Form.useForm