diff --git a/src/app.vue b/src/app.vue index d704522..c5b15f7 100644 --- a/src/app.vue +++ b/src/app.vue @@ -19,6 +19,7 @@ const isDrawerVisible = computed(() => store.settings.showNavDrawer === true); const drawerWidth = computed(() => store.settings.drawerLeftWidth); function onUpdateDrawerWidth(width: number) { + console.log(width); // TODO: can we mutate? store.settings = { ...store.settings, drawerLeftWidth: width }; } @@ -27,7 +28,7 @@ function onUpdateDrawerWidth(width: number) {