change in progress

This commit is contained in:
Emily
2024-10-02 17:05:34 +02:00
parent f516c53b7b
commit 314660d8a3
22 changed files with 503 additions and 438 deletions

View File

@@ -0,0 +1,8 @@
const { project } = useProject()
export const refreshKey = computed(() => {
if (!project.value) return 'null';
return project.value._id.toString();
})