style: format code using Prettier

This commit is contained in:
2026-08-08 17:23:19 +02:00
parent 1932eaf154
commit ea5e238ad0
59 changed files with 9649 additions and 8795 deletions
@@ -18,11 +18,11 @@ limitations under the License.
import SidebarExpandButton from './SidebarExpandButton.vue';
const props = defineProps({
'expanded': {
expanded: {
default: false,
required: false,
type: Boolean
}
type: Boolean,
},
});
const emit = defineEmits(['toggleExpanded']);
@@ -34,7 +34,10 @@ const toggleSidebar = function toggleSidebar() {
<template>
<nav class="sidebar" :class="{ expanded }">
<div class="sidebar-controls">
<SidebarExpandButton @click="toggleSidebar" class="sidebar-expand-button" />
<SidebarExpandButton
@click="toggleSidebar"
class="sidebar-expand-button"
/>
</div>
<div class="sidebar-content" v-show="props.expanded">
<slot />