我正在使用rateYo插件显示星级。在onSet方法期间,我想调用方法中定义的函数。
<script>
export default {
methods: {
updateRate(rate) {
console.log(rate)
},
},
mounted() {
$('.rateYo').rateYo({
rating: 3,
fullStar: true,
starWidth: "16px",
onSet: function (rating, rateYoInstance) {
updateRate(rating) // This is where I have problem with
},
});
},
}
</script>
它给了我updateRate is not a function
。
我也尝试使用this.updateRate(rating)
导致此错误this.updateRate is not a function
如何调用该方法?