refactor(sidebar): rename sidebar toggling function

Renamed the sidebar toggling function in the left sidebar layout to
toggleSidebar.
This commit is contained in:
2026-08-02 13:56:25 +02:00
parent 447207e5f0
commit a77bbec3fa
+3 -3
View File
@@ -29,7 +29,7 @@ const props = defineProps({
const expanded = ref(props.expanded); const expanded = ref(props.expanded);
const toggleExpanded = function toggleExpanded () { const toggleSidebar = function toggleSidebar () {
expanded.value = !expanded.value; expanded.value = !expanded.value;
}; };
</script> </script>
@@ -37,9 +37,9 @@ const toggleExpanded = function toggleExpanded () {
<template> <template>
<div class="layout-container" :class="{ expanded }"> <div class="layout-container" :class="{ expanded }">
<div class="sidebar-expand-button-container"> <div class="sidebar-expand-button-container">
<SidebarExpandButton class="sidebar-expand-button" @click="toggleExpanded" /> <SidebarExpandButton class="sidebar-expand-button" @click="toggleSidebar" />
</div> </div>
<Sidebar @toggle-expanded="toggleExpanded" :expanded="expanded" class="sidebar"> <Sidebar @toggle-expanded="toggleSidebar" :expanded="expanded" class="sidebar">
<slot name="sidebar" /> <slot name="sidebar" />
</Sidebar> </Sidebar>
<main class="main-content"> <main class="main-content">