vue.js에서 this.$emit을 사용하는 방법을 자세히 설명하세요.

亚连
풀어 주다: 2018-06-05 11:20:05
원래의
10559명이 탐색했습니다.

이제 vue.js에서 this.$emit에 대한 심층적인 이해를 공유하겠습니다. 좋은 참조 가치가 있으며 모든 사람에게 도움이 되기를 바랍니다.

vue.js의 this.emit 이해: this.emit('increment1', "This position can addparameter"); 실제로 해당 기능은 사용자 정의 기능을 트리거하는 것입니다.

예제를 보세요:

<!DOCTYPE html>
<html>
<head>
 <meta charset="UTF-8">
 <title></title>
</head>
<script src="vue.js"></script>
<body>
<p id="counter-event-example">
 <p>{{ total }}</p>
 <button-counter v-on:increment1="incrementTotal1"></button-counter>
 <button-counter v-on:increment2="incrementTotal2"></button-counter>
</p>
</body>
<script>
 Vue.component(&#39;button-counter&#39;, {
 template: &#39;<button v-on:click="increment">{{ counter }}</button>&#39;,
 data: function () {
  return {
  counter: 0
  }
 },
 methods: {
  increment: function () {
  this.counter += 1;
  this.$emit(&#39;increment1&#39;,"这个位子是可以加参数的");//触发自定义increment1的函数。此处的increment1函数就是 incrementTotal1函数。
//  this.$emit(&#39;increment2&#39;); //此时不会触发自定义increment2的函数。
  }
 }
 });
 new Vue({
 el: &#39;#counter-event-example&#39;,
 data: {
  total: 0
 },
 methods: {
  incrementTotal1: function (e) {
  this.total += 1;
  console.log(e);
  },
  incrementTotal2: function () {
  this.total += 1;
  }
 }
 })
</script>
</html>
로그인 후 복사

위 예에 대한 추가 분석:

1 먼저 사용자 정의 구성 요소 버튼 카운터를 살펴보고 메서드를 바인딩합니다.

2 . 버튼을 클릭하면 increment 함수가 실행됩니다. increment에 this.$emit('increment1', "This position can addparameter")가 있습니다.

3.

4.increment가 실행될 때 사용자 지정 함수 increment2가 실행되지 않으므로 두 번째 버튼을 클릭해도 incrementTotal2 기능이 실행되지 않습니다.

위 내용은 모두를 위해 제가 정리한 내용입니다. 앞으로 모든 사람에게 도움이 되기를 바랍니다.

관련 기사:

vue cli webpack에서 sass를 사용하는 방법(자세한 튜토리얼)

jQuery에서 P 태그 텍스트 값을 변경하는 방법

에서 태그 하위 요소의 추가 및 할당 방법 구현 jQuery

위 내용은 vue.js에서 this.$emit을 사용하는 방법을 자세히 설명하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿