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 {