From efdd70a391a0bcda8e2b7ed3b198be624512d3c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Merve=20=C3=96z=C3=A7if=C3=A7i?= Date: Fri, 22 Mar 2019 11:55:10 +0300 Subject: [PATCH] Chips doc added --- src/components/chips/Chips.vue | 2 +- src/views/chips/ChipsDemo.vue | 7 ++ src/views/chips/ChipsDoc.vue | 199 +++++++++++++++++++++++++++++++++ 3 files changed, 207 insertions(+), 1 deletion(-) create mode 100644 src/views/chips/ChipsDoc.vue diff --git a/src/components/chips/Chips.vue b/src/components/chips/Chips.vue index c222bd839..88e2b3d39 100644 --- a/src/components/chips/Chips.vue +++ b/src/components/chips/Chips.vue @@ -35,7 +35,7 @@ export default { this.focused = true; this.$emit('focus', event); }, - onBlur() { + onBlur(event) { this.focused = false; this.$emit('blur', event); }, diff --git a/src/views/chips/ChipsDemo.vue b/src/views/chips/ChipsDemo.vue index cfcbdb8f9..686c2b64c 100644 --- a/src/views/chips/ChipsDemo.vue +++ b/src/views/chips/ChipsDemo.vue @@ -21,16 +21,23 @@ + + diff --git a/src/views/chips/ChipsDoc.vue b/src/views/chips/ChipsDoc.vue new file mode 100644 index 000000000..23a3ac42e --- /dev/null +++ b/src/views/chips/ChipsDoc.vue @@ -0,0 +1,199 @@ + \ No newline at end of file