在vue.js中为相同的PROPS获取不同的输出

时间:2018-02-19 11:50:14

标签: vuejs2

我的代码如下所示

props: ['applicants',],
methods : {
   formated (item) {
       console.log('first')
       console.log(Object.keys(this.applicants).length)
   },
   fetchapplicants () {
       console.log('second')
       console.log(Object.keys(this.applicants).length)
   }
},
created () {
   EventBus.$on('change',this.formated);
},
beforeMount(){
   this.fetchapplicants();
},

我得到的输出如下

enter image description here

为什么我得到不同的输出?

0 个答案:

没有答案