vue-swiper
vue-swiper copied to clipboard
Swiper component For Vue 1.0.
Hey bro, i got this error while trying to install it on nuxt js version 2.xx
vue.runtime.esm.js?2b0e:619 [Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
由于接触vue不久,想在vue单独文件中做一个轮播视图,但是总报错`vue.esm.js?7a34:434 [Vue warn]: Failed to resolve directive: el`, 而且这个轮播图的确是不能滑动的,单独的vue组件代码如下: ``` import Swiper from 'vue-swiper' export default { name: 'Home', components: { Swiper } } .home img { height: 32rem; width:...
请问为什么改成ref以后, ``` this.$nextTick(function () { this.setPage(this.currentPage, true) this.slideEls = this.$refs.swiperWrap.children; this._createLoop() }) ``` ``` ``` ``` _createLoop () { var propName = this.isHorizontal() ? 'clientWidth' : 'clientHeight' var swiperWrapEl =...
Vue2
add branch with Vue2 support
` return -[].reduce.call(this.slideEls, function (total, el, i) { return i > page - 2 ? total : total + el[propName]; }, 0) + this.translateOffset; ` getTranslateOfPage这个方法page-2是什么意思呢?感谢回答
比如arr=[1,2,3] 我watch某个数据发生变化后 this.$set('arr',[1,2,3,4,5,6]); 我试了一下,貌似不行。
how to auto scroll the picture???
Just wanted to post this here, thank you for the wonderful component needed to use it in a 2.0 project so ported it over (some deprecated functions). ``` const VERTICAL...