vue.js/vue.js 기능

반응형

    computed - 종속 data 캐싱으로 button disabled validation 제어

    서론 지난번 글 hjh0827.tistory.com/24에서 button 클릭시 제어를 data 빈값 체크로 페이지 이동을 처리하였다. goNextPage () { if (this.signup.id == null || this.signup.password == null || this.signup.pwhint === '' || this.signup.pwhintans == null || this.passwordCheck == null) { alert('필수값 누락') return } if (!this.idValid || !this.passwordValidFlag || !this.passwordCheckFlag) { alert('유효성 확인') return } this.$router.push({ name: '..

    vue.js 정리 모음(v-for/숫자 3 자리 comma/input type=radio v-id 선언)

    v-for 단순 for문 1. v-for {{ item }} index 사용 for문 {{ item }} 'index' is defined but never used.eslint(vue/no-unused-vars)오류난다. :key="index" → :key="index" 로 변경해서 사용하면 됩니다. {{ item }} : {{ index }} 숫자 3자리 콤마 filter 2. comma test {{ item | comma }} v-for index를 이용한 radio id 3. radio index {{ item }} * 추후 계속 적을 예정

반응형