Pārlūkot izejas kodu

fix the value when use the vautocomplete as selectitem

chenxin0723 1 gadu atpakaļ
vecāks
revīzija
98e38c7abb

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 0 - 0
vuetifyx/vuetifyxjs/dist/vuetifyxjs.umd.min.js


+ 6 - 1
vuetifyx/vuetifyxjs/src/components/Autocomplete.tsx

@@ -77,6 +77,12 @@ export default Vue.extend({
 			}
 		},
 		changeStatus(vals: any) {
+			if (!this.remoteUrl || !this.eventName) {
+				this.value = vals;
+				this.$emit("change", vals);
+				return;
+			}
+
 			const cachedSelectedItems: any[] = [];
 			vals.forEach((val: any) => {
 				this.listItems.forEach((item: any) => {
@@ -93,7 +99,6 @@ export default Vue.extend({
 				));
 			});
 			this.cachedSelectedItems = (uniqueCachedSelectedItems) as [];
-			console.log("cachedSelectedItems", this.cachedSelectedItems);
 			this.value = vals;
 			this.$emit("change", vals);
 		},

Daži faili netika attēloti, jo izmaiņu fails ir pārāk liels