You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warnings appear with vue 2.0 in inspection: (when doing :useCustomSlot="true")
[Vue tip]: Prop "usecustomslot" is passed to component <Anonymous>, but the declared prop name is "useCustomSlot". Note that HTML attributes are case-insensitive and camelCased props need to use their kebab-case equivalents when using in-DOM templates. You should probably use "use-custom-slot" instead of "useCustomSlot".
Updating documentation to help others, avoid warning messages.
Copy file name to clipboardExpand all lines: docs/src/pages/Props.vue
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,11 @@ export default {
17
17
props: [
18
18
['id', 'String','dropzone', 'A string by which to identify the component, can be anything', 'True'],
19
19
['options', 'Object','{}', 'A dropzone [configuration object](http://www.dropzonejs.com/#configuration-options), accepts all valid dropzone configuration', 'True'],
20
-
['includeStyling', 'Boolean','True', 'Whether to include the dropzone and component styling.', 'False'],
20
+
['include-styling', 'Boolean','True', 'Whether to include the dropzone and component styling.', 'False'],
21
21
['awss3', 'Object','{}', 'Object consisting of 3 values signingURL, headers, and params. You can use the headers and params keys to send additional headers or parameters with the signing request (e.g. CSRF tokens). See [Demo and config](#/aws-s3-upload)', 'False'],
22
-
['destroyDropzone', 'Boolean','True', 'Destroy the dropzone object when the component is destroyed.', 'False'],
23
-
['duplicateCheck','Boolean','False','Check if added file is duplicate, in already dropped files in dropzone','False'],
24
-
['useCustomSlot','Boolean','False','Use a custom slot for the default message area','False'],
22
+
['destroy-dropzone', 'Boolean','True', 'Destroy the dropzone object when the component is destroyed.', 'False'],
23
+
['duplicate-check','Boolean','False','Check if added file is duplicate, in already dropped files in dropzone','False'],
24
+
['use-custom-slot','Boolean','False','Use a custom slot for the default message area','False'],
0 commit comments