如何在 swiper 事件中获取在 vue 中声明的方法?
export default {
data() {
let obj = {
swiperOption: {
...
on: {
init: function () {
//need call someMethod in this place
}
}
};
return obj;
}
methods: {
someMethod (){}
}
}
现在我用
const vue = this
但我认为,这不是好方法