From c5caec14d76ca6be5b53682b027ade4645c9ebec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Ku=CC=88hn?= Date: Tue, 19 Jan 2021 12:52:31 +0100 Subject: [PATCH] refactoring --- docs/src/demos/Nodes/Mention/MentionList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/demos/Nodes/Mention/MentionList.vue b/docs/src/demos/Nodes/Mention/MentionList.vue index bf9b9552..14078872 100644 --- a/docs/src/demos/Nodes/Mention/MentionList.vue +++ b/docs/src/demos/Nodes/Mention/MentionList.vue @@ -17,12 +17,12 @@ export default { props: { items: { type: Array, - default: () => [], + required: true, }, command: { type: Function, - default: () => true, + required: true, }, },