diff --git a/src/components/Menu.vue b/src/components/Menu.vue index 4e144b8..cfe7ccc 100644 --- a/src/components/Menu.vue +++ b/src/components/Menu.vue @@ -1,114 +1,215 @@ \ No newline at end of file +import { ref } from 'vue'; +const isExpanded = ref(true); +function toggleExpand() { + isExpanded.value = !isExpanded.value; +} +