12 lines
174 B
JavaScript
12 lines
174 B
JavaScript
import { ref } from 'vue';
|
|
|
|
const ShowContent = ref(false);
|
|
|
|
function SetShowContent(value) {
|
|
ShowContent.value = value;
|
|
}
|
|
|
|
export {
|
|
ShowContent,
|
|
SetShowContent
|
|
} |