abpcoder 20 시간 전
부모
커밋
2104cab3f8
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      src/pagesOther/pages/university/index/components/plus/college-conditions-picker.vue

+ 5 - 0
src/pagesOther/pages/university/index/components/plus/college-conditions-picker.vue

@@ -124,6 +124,11 @@ const handleChange = (value: any) => {
     }
     emit('change', filter.value);
 }
+
+watch(() => filter.value.tier, tiers => {
+    // sync tier from outside
+    form.value.tier = tiers
+}, {immediate: true})
 </script>
 
 <style scoped></style>