내가 한 노력들

[ Vue.js ]데이터의 속성값 가져오는 법 본문

IT 공부/Vue

[ Vue.js ]데이터의 속성값 가져오는 법

JONGI-N CHOI 2021. 8. 17. 00:41

방법

event.target.getAttribute(속성명);

사용 

<button @click=“getAttribute” data=“1004”>클릭</button> 

methods: {
    getAttribute(e) {
    	console.log(e.target.getAttribute('data'));
    }
}