From aa2b1cae8881dece9a629dc95a8f9df88f9bbd27 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 15 Feb 2024 12:22:50 +0100 Subject: [PATCH] fix(Notification): remove `required` title to prevent warning when using slot --- src/runtime/components/overlays/Notification.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/components/overlays/Notification.vue b/src/runtime/components/overlays/Notification.vue index 1686eedc..4b7f4c1e 100644 --- a/src/runtime/components/overlays/Notification.vue +++ b/src/runtime/components/overlays/Notification.vue @@ -13,7 +13,7 @@
-

+

{{ title }} @@ -73,7 +73,7 @@ export default defineComponent({ }, title: { type: String, - required: true + default: null }, description: { type: String,