refs 는 말 그대로 주소를 지정해서 접근할 수 있도록 해 주는 거임. 이렇게 ref를 지정해 주고, 저게 접근할 수 있는 이름이 됨. import HelloWorld from './components/HelloWorld.vue'; export default{ components:{ HelloWorld }, mounted(){ console.log(this.$refs.hello); } } 이렇게 this.$refs.이름 해서 접근 가능함. 저 $refs.hello에는 굉장히 많은 정보가 담겨져 있는 객체임. 내부의 요소에 접근하고 싶으면 console.log(this.$refs.hello.$el); 저렇게 뭐 최상위로 Handler, Target, isRevoked 등 객체와 값들이 있음. 어.. 그러..