We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
在写业务逻辑时,发现computed 和 watch 并不会在自定义组件或页面卸载时自动移除监听,如果watch内部使用了this,也就是当前组件实例或页面实例,则该实例不会被释放,如果多次进入同一页面,watch监听会重复绑定多个,严重影响性能和业务逻辑。
computed
watch
this