jpaltny

Results 1 comments of jpaltny

I found this did the trick. Destroy and recreate using the lifecycle hooks. ``` beforeUpdate() { this.$refs.slick.destroy(); if (this.$refs.slick) { this.$refs.slick.destroy(); } }, updated() { this.$nextTick(function () { this.$refs.slick.create(this.slickOptions); });...