diff --git a/doc/autocomplete/MultipleDoc.vue b/doc/autocomplete/MultipleDoc.vue
index 60018de8b..2e800c785 100644
--- a/doc/autocomplete/MultipleDoc.vue
+++ b/doc/autocomplete/MultipleDoc.vue
@@ -3,7 +3,11 @@
Multiple mode is enabled using multiple property used to select more than one value from the autocomplete. In this case, value reference should be an array.
-
+
With Typeahead
+
+
+
Without Typeahead
+
@@ -12,16 +16,25 @@
export default {
data() {
return {
- value: '',
+ value1: null,
+ value2: null,
items: [],
code: {
basic: `
-
+With Typeahead
+
+
+Without Typeahead
+
`,
options: `
-
+
With Typeahead
+
+
+
Without Typeahead
+
@@ -29,7 +42,8 @@ export default {
export default {
data() {
return {
- value: '',
+ value1: null,
+ value2: null,
items: []
};
},
@@ -44,14 +58,19 @@ export default {
composition: `
-
+
With Typeahead
+
+
+
Without Typeahead
+