Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 399 Bytes

vue.md

File metadata and controls

22 lines (20 loc) · 399 Bytes

Vue

  • disappear div below certain screen width

    @media screen and (max-width: 1400px){
      #container {
        display: none;
      }
    }
  • EventBus

    // 이벤트버스 생성
    var EventBus = new Vue()
    // 이벤트 발행
    EventBus.$emit('message', 'hello world');
    // 이벤트 구독
    EventBus.$on('message', function(text) {
        console.log(text);
    });