디렉티브 : vue 엘리먼트의 데이터, 함수 또는 event를 html tag와 연결 v-on 엘리먼트에 이벤트 리스너를 연결 DOM에 이벤트가 발생했을때 javascript를 실행 약어 : "v-on" ->> "@" html Hello Hello Hello javascript new Vue({ el: '#app', methods: { hello: function(){ alert('hello'); }, helloMsg: function(msg, e){ e.stopPropagation(); alert('hello' + ' ' + msg); } } }); v-bind html tag의 속성과 vue 데이터를 연결 약어 : "v-bind" ->> ":" html hello javascript new Vue({..