Files
dragonroll/frontend/app/services/Content.js
2026-04-26 00:08:27 +02:00

12 lines
174 B
JavaScript

import { ref } from 'vue';
const ShowContent = ref(false);
function SetShowContent(value) {
ShowContent.value = value;
}
export {
ShowContent,
SetShowContent
}