vue中使用vue-awesome-swiper,想要使用slideTo去修改默认展示的内容,直接调用this.$refs.swiper.slideTo(2, 0, true)发现不好使,一顿费劲的查找发现this.$refs.swiper下还有一个$swiper对象,通过调用this.$refs.swiper.$swiper.slideTo(2, 0, true)才行,具体代码如下:
html写法 引入vue-awesome-swiper 初始化参数 this.$refs.swiper对象的截图,其中有$swiper
网友评论