mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
|
|
|
|
const { project } = useProject()
|
|
|
|
export const refreshKey = computed(() => {
|
|
if (!project.value) return 'null';
|
|
return project.value._id.toString();
|
|
}) |