mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-09 23:48:36 +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();
|
|
}) |