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 {