diff --git a/src/layouts/LeftSidebarLayout.vue b/src/layouts/LeftSidebarLayout.vue index 3d525c9..b60fed9 100644 --- a/src/layouts/LeftSidebarLayout.vue +++ b/src/layouts/LeftSidebarLayout.vue @@ -29,7 +29,7 @@ const props = defineProps({ const expanded = ref(props.expanded); -const toggleExpanded = function toggleExpanded () { +const toggleSidebar = function toggleSidebar () { expanded.value = !expanded.value; }; @@ -37,9 +37,9 @@ const toggleExpanded = function toggleExpanded () {