我想要像這樣訪問vue實例數據內部的過濾器函數。 JS: -訪問vue實例/數據裏面的過濾器方法
new Vue({
data:{
amount: 10,
exchangeRate:50
},
el:"#app",
filters:{
currency: function(amount){
console.log(this);
//return amount * this.exchangeRate;
return amount *50;
}
}
})
HTML:
<div id="app">
{{ amount | currency}}
</div>
我的目標是使用return amount * this.exchangeRate;
但this
等於window
這裏。 我該怎麼做? 謝謝。 jsfiddle