From 222e66d8904d696f4bc2060c26c39dfdb550cbc0 Mon Sep 17 00:00:00 2001 From: Andrei <12499409+andreiTn@users.noreply.github.com> Date: Thu, 22 Oct 2020 15:36:16 +0100 Subject: [PATCH] props should be kebab-case Props are HTML attributes so we should use kebab-case. Also, props that receive boolean values can be used without a value. Their presence or absence implies true or false. https://v3.vuejs.org/guide/component-props.html#prop-casing-camelcase-vs-kebab-case https://v3.vuejs.org/guide/component-props.html#passing-a-boolean --- docs/src/pages/CustomHtml.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/pages/CustomHtml.vue b/docs/src/pages/CustomHtml.vue index 2ea9b12..1aa467c 100644 --- a/docs/src/pages/CustomHtml.vue +++ b/docs/src/pages/CustomHtml.vue @@ -2,7 +2,7 @@