소스 검색

fix the value of autocomplete when using the remote data

chenxin0723 1 년 전
부모
커밋
8ad1f6787a
2개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 0
      vuetifyx/vuetifyxjs/dist/vuetifyxjs.umd.min.js
  2. 10 1
      vuetifyx/vuetifyxjs/src/components/Autocomplete.tsx

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 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() {

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.