vue 如何实现在filters下的方法中获取到data中变量

原因:filters中的this指向的并不是vue实例

通过以下方式:可以实现filters中获取到data的变量

1: 定义全局变量 _this (let _this = this)
2: beforeCreate() { _this = this; } //将 this 赋值给_this
3: filters下的方法可以直接使用_this.data来获取到data中的变量




你可能感兴趣的:(vue 如何实现在filters下的方法中获取到data中变量)