강의

멘토링

커뮤니티

Inflearn Community Q&A

miro20140905's profile image
miro20140905

asked

Practical development process through Yoon Jae-seong's Vue.js project

34. User-related page settings

회원가입폼에서 중복확인 후 id를 변경시 중복확인을 다시하도록 처리.

Resolved

Written on

·

326

0

안녕하세요. 강의해 주셔서 감사합니다. 강의를 듣고 따라하니 재밌네요. 

id변경을 watch를 통해 감지해서 다음과 같이 했는데 이렇게 하면 되나요?

    watch: {
        user_id : {
            handlerfunction (valoldVal) {
                console.log('user_id changed')
                this.check_user_id = false
            },
        }
   }
vuejs

Answer 1

0

softcampus님의 프로필 이미지
softcampus
Instructor

아마 될것 같습니다~

miro20140905's profile image
miro20140905

asked

Ask a question