소스 검색

Caremonth > create claim - icd autocomplete does not work on page load

Vijayakrishnan 3 년 전
부모
커밋
a5843bcc18
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      resources/views/app/patient/care-month/_create-claim.blade.php

+ 3 - 1
resources/views/app/patient/care-month/_create-claim.blade.php

@@ -236,8 +236,10 @@
             }
         },
         mounted: function () {
-            this.initICDAutoSuggest();
             this.getPrefillValues();
+            Vue.nextTick(() => {
+                this.initICDAutoSuggest();
+            });
         }
     });
 </script>