溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

對(duì)vue.js中this.$emit的深入理解

發(fā)布時(shí)間:2020-08-22 08:34:43 來源:腳本之家 閱讀:2291 作者:有一個(gè)王小森 欄目:web開發(fā)

對(duì)于vue.js中的this.emit的理解:this.emit(‘increment1',”這個(gè)位子是可以加參數(shù)的”);其實(shí)它的作用就是觸發(fā)自定義函數(shù)。

看例子:

<!DOCTYPE html>
<html>
<head>
 <meta charset="UTF-8">
 <title></title>
</head>
<script src="vue.js"></script>
<body>
<div id="counter-event-example">
 <p>{{ total }}</p>
 <button-counter v-on:increment1="incrementTotal1"></button-counter>
 <button-counter v-on:increment2="incrementTotal2"></button-counter>
</div>
</body>
<script>
 Vue.component('button-counter', {
 template: '<button v-on:click="increment">{{ counter }}</button>',
 data: function () {
  return {
  counter: 0
  }
 },
 methods: {
  increment: function () {
  this.counter += 1;
  this.$emit('increment1',"這個(gè)位子是可以加參數(shù)的");//觸發(fā)自定義increment1的函數(shù)。此處的increment1函數(shù)就是 incrementTotal1函數(shù)。
//  this.$emit('increment2'); //此時(shí)不會(huì)觸發(fā)自定義increment2的函數(shù)。
  }
 }
 });
 new Vue({
 el: '#counter-event-example',
 data: {
  total: 0
 },
 methods: {
  incrementTotal1: function (e) {
  this.total += 1;
  console.log(e);
  },
  incrementTotal2: function () {
  this.total += 1;
  }
 }
 })
</script>
</html>

對(duì)上面的例子進(jìn)行進(jìn)一步的解析:

1、首先看 自定組件button-counter ,給其綁定了方法 :increment;

2、點(diǎn)擊button時(shí)會(huì)執(zhí)行函數(shù) increment,increment中有 this.$emit(‘increment1',”這個(gè)位子是可以加參數(shù)的”);

3、當(dāng)increment執(zhí)行時(shí),就會(huì)觸發(fā)自定函數(shù)increment1,也就是incrementTotal1函數(shù);

4、而increment執(zhí)行時(shí)沒有觸發(fā)自定義函數(shù)increment2,所以點(diǎn)擊第二個(gè)按鈕不執(zhí)行incrementTotal2的函數(shù)。

以上這篇對(duì)vue.js中this.$emit的深入理解就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI