소스 검색

fix the value when use the vautocomplete as selectitem

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

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

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