From 8a868a885ca0d80e6280b5f12035f600c746ee3b Mon Sep 17 00:00:00 2001 From: SongWuKong Date: Tue, 21 Sep 2021 01:50:43 +0800 Subject: [PATCH] fix(docs): notification documentation with types demo icon missing (#3521) --- docs/examples/notification/different-types.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/examples/notification/different-types.vue b/docs/examples/notification/different-types.vue index 5feab4c589..6d9616e4f2 100644 --- a/docs/examples/notification/different-types.vue +++ b/docs/examples/notification/different-types.vue @@ -31,6 +31,7 @@ export default defineComponent({ ElNotification({ title: 'Info', message: 'This is an info message', + type: 'info', }) } @@ -38,6 +39,7 @@ export default defineComponent({ ElNotification({ title: 'Error', message: 'This is an error message', + type: 'error', }) } return {