drewjbartlett / vue-flickity

A Vue Slider / Carousel Component for Flickity.js
http://drewjbartlett.com/demos/vue-flickity/
375 stars 56 forks source link

Best way to reinit #61

Closed CHEWX closed 4 years ago

CHEWX commented 4 years ago

If you're using props array to populate slider and props array changes -/+, I can watch the items and trigger a reinit? Best method for this?

CHEWX commented 4 years ago
<Flickity>
<div class="flickity__slide" v-for="item in items">
...
</div>
</Flickity>
    watch: {
        items () {
            this.$nextTick( () => { this.$refs.flickity.rerender() })
        }
    }