📚 [VueJS] Methods 결과 크롬브라우저에서 확인하기

Category: VueJS | 📅 January 08, 2019

모델 : 템플릿으로 선언함

<script>
methods: {
  [확인할 method-name] () {
     console.log(this.[선언된 모델 이름]);
  }
}
</script>
🏷️ Tags
  • #Vuejs