From 0044433b42601410f5d4e3245808ac528641acc5 Mon Sep 17 00:00:00 2001 From: Krystof Date: Thu, 2 Nov 2023 13:45:32 +0100 Subject: [PATCH] fix incorrect default handling --- documentation/.vuepress/components/sample.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/documentation/.vuepress/components/sample.vue b/documentation/.vuepress/components/sample.vue index 6b8c798fe..bac605167 100644 --- a/documentation/.vuepress/components/sample.vue +++ b/documentation/.vuepress/components/sample.vue @@ -5,8 +5,14 @@ export default { props: { src: String, - split: Boolean = false, - noRoom: Boolean = false + split: { + type: Boolean, + default: false + }, + noRoom: { + type: Boolean, + default: false + } }, data() { return { @@ -58,7 +64,7 @@ export default {
-