diff --git a/.gitignore b/.gitignore index 20fba96c..3a7e7ced 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,4 @@ vite.config.ts.* skills-lock.json .atomcode datalog +.playwright-mcp diff --git a/packages/effects/layouts/src/widgets/notification/notification.vue b/packages/effects/layouts/src/widgets/notification/notification.vue index 7d0f5105..d749a4fc 100644 --- a/packages/effects/layouts/src/widgets/notification/notification.vue +++ b/packages/effects/layouts/src/widgets/notification/notification.vue @@ -43,18 +43,20 @@ const close = () => { open.value = false; }; -const handleViewAll = () => { +function handleViewAll() { emit('viewAll'); close(); -}; +} -const handleMakeAll = () => { +function handleMakeAll() { emit('makeAll'); -}; +} -const handleClear = () => { +function handleClear() { emit('clear'); -}; +} + +defineExpose({ toggle });