Kaynağa Gözat

fix the value of autocomplete when using the remote data

chenxin0723 1 yıl önce
ebeveyn
işleme
8ad1f6787a

Dosya farkı çok büyük olduğundan ihmal edildi
+ 0 - 0
vuetifyx/vuetifyxjs/dist/vuetifyxjs.umd.min.js


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

@@ -119,7 +119,16 @@ export default Vue.extend({
 	created() {
 		this.listItems =  this.$props.items || [];
 		this.value = (this.$attrs.value) as any || [];
-		this.cachedSelectedItems = this.value;
+		if (this.remoteUrl) {
+			this.cachedSelectedItems = this.value;
+			this.listItems =  this.value;
+
+			const vals: any[] = [];
+			this.value.forEach((val: any) => {
+				vals.push(val.value);
+				this.value = vals as any;
+			})
+		}
 	},
 
 	mounted() {

Bu fark içinde çok fazla dosya değişikliği olduğu için bazı dosyalar gösterilmiyor