From 43cd6d34c377aac14dac4b3523d04db7c292aa19 Mon Sep 17 00:00:00 2001 From: Jeff Sagal Date: Mon, 29 Apr 2019 11:31:54 -0700 Subject: [PATCH] only render functional components in the client (#863) --- docs/guide/components.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/guide/components.md b/docs/guide/components.md index a4929f4..e84cdae 100644 --- a/docs/guide/components.md +++ b/docs/guide/components.md @@ -28,7 +28,9 @@ export default { }; ``` - + + + The same approach applies for `multiple` selects: @@ -53,7 +55,9 @@ export default { }; ``` - + + + ## Setting Globally at Registration @@ -78,6 +82,7 @@ vSelect.props.components.default = () => ({ Vue.component(vSelect) ``` - - + + +