vue $emit拋出事件

 子組件vue

scroll組件 this

if(this.isBindScroll){    若是滾動組件須要綁定滾動組件的話 
	let _this=this
	this.scroll.on('scroll',(pos)=>{
		_this.$emit('scroll',pos)    //子組件拋出事件讓
	})
}

父組件blog

 import Scroll from 'src/base/scroll/scroll.vue'

<template>
	<scroll class="listview" 
		@scroll="scroll">   //綁定在調用的子組件上
        <scroll>
<template>

methods:{
	    scroll(pos){   //scroll事件
	    	console.log(pos)
	    }
相關文章
相關標籤/搜索