使用bus总线后,发现自己接口请求叠加
然后之后发现自己定义和使用了bus总线,但是都没有off掉
一般地,在$on
前$off
掉,在beforeDestory或者destoryed也要$off
掉
mounted () {
BusVue.$off('isShowBox')
BusVue.$on('isShowBox', this.isShowBox)
使用bus总线后,发现自己接口请求叠加
然后之后发现自己定义和使用了bus总线,但是都没有off掉
一般地,在$on
前$off
掉,在beforeDestory或者destoryed也要$off
掉
mounted () {
BusVue.$off('isShowBox')
BusVue.$on('isShowBox', this.isShowBox)