Vue.JS 2 Tutorial #34 - Custom Directives > JS프레임워크

매출이 오르면 내리는 수수료! 지금 수수료센터에서 전자결제(PG)수수료 비교견적 신청해 보세요!

JS프레임워크

Vue.JS 2 Tutorial #34 - Custom Directives 정보

Vue Vue.JS 2 Tutorial #34 - Custom Directives

본문

Custom Directives

 

directives : v-if, v-show, v-model, vi-on 등

 

Vue.directive('rainbow', {

  bind(el, binding, vnode) {

    el.sytle.color = "#" + Math.random().toString().slice(2, 8);

  }

});

 

<h2 v-rainbow>{{ blog.title }}</h2>  ==> 전체가 el

v-rainbow="""에 들어가는 것이 있다면 그것이 binding

 

v-theme:column = "'wide'"

directive: argument = binding

 

Vue.directive('theme', {

  bind(el, binding, vnode) {

    if(binding.value == 'wide') {

      el.style.maxWidth = "1200px";

    } else if (binding.value == 'narrow') {

      el.style.maxWidth = "560px"

    }

    if(bingidng.arg == 'column') {

      el.style.background = '#ddd';

      el.style.padding = '20px';

    }

  }

});

 

 

 

추천
0

댓글 0개

전체 261 |RSS
JS프레임워크 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT