-
-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sliders update images but not number of images #26
Comments
Fixed with 8749d03. |
Everything I'd been working with is now broken... both sliders and navbars now show up as "undefined." I've reduced everything down to a single slider and here is what it gives me: vue.js:525 [Vue warn]: Error in watcher "current" |
Make sure you are using Vue@2.1.6. Vuetify does not support Vue@2.1.7 yet. |
Thanks, got it. Sorry for the confusion. |
No worries. There are some pretty big issues with slots in 2.1.7 and Vuetify uses tons of them! |
When using sliders I'm trying to set the images dynamically. In the new Vue() constructor I have data like:
slider_items: {urls: [{},{},{}]}
and I if I later state:
myVue.slider_items.urls = newUrls;
the images change successfully, and
myVue.slider_items.urls
is exactly what I'd expect.However, the number of images the slider has is unchanged.
If there were three urls in the view constructor, and the new
myVue.slider_items.urls.length === 5
, only the first three images cycle and only 3 slider_controls buttons render. Likewise, ifmyVue.slider_items.urls
started in the constructor with 3 urls and the newly mintedmyVue.slider_items.urls
contains only one object, the slider will show that new image but then two blank screens.The text was updated successfully, but these errors were encountered: