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