From b63cb74d233cb9948778323de55628200d2fe0e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Merve=20=C3=96z=C3=A7if=C3=A7i?= Date: Mon, 25 Mar 2019 15:21:45 +0300 Subject: [PATCH] Listbox doc added --- src/components/listbox/Listbox.vue | 4 +- src/views/listbox/ListboxDemo.vue | 7 + src/views/listbox/ListboxDoc.vue | 275 +++++++++++++++++++++++++++++ 3 files changed, 284 insertions(+), 2 deletions(-) create mode 100644 src/views/listbox/ListboxDoc.vue diff --git a/src/components/listbox/Listbox.vue b/src/components/listbox/Listbox.vue index 21784f2ba..7b42c7beb 100644 --- a/src/components/listbox/Listbox.vue +++ b/src/components/listbox/Listbox.vue @@ -27,13 +27,13 @@ export default { props: { value: null, options: Array, + optionLabel: null, + listStyle: null, disabled: Boolean, dataKey: null, - listStyle: null, multiple: Boolean, metaKeySelection: Boolean, filter: Boolean, - optionLabel: null, optionValue: null, optionDisabled: null }, diff --git a/src/views/listbox/ListboxDemo.vue b/src/views/listbox/ListboxDemo.vue index b917b11df..4f209597c 100644 --- a/src/views/listbox/ListboxDemo.vue +++ b/src/views/listbox/ListboxDemo.vue @@ -21,10 +21,14 @@ + + \ No newline at end of file diff --git a/src/views/listbox/ListboxDoc.vue b/src/views/listbox/ListboxDoc.vue new file mode 100644 index 000000000..f8b542cce --- /dev/null +++ b/src/views/listbox/ListboxDoc.vue @@ -0,0 +1,275 @@ + \ No newline at end of file