viktorlarsson / vue-tiny-slider

Vanilla javascript slider for all purposes created by ganlanyuan in Vue.
MIT License
136 stars 51 forks source link

Vue 2 don't work with camelCase Events #53

Open aheiland opened 4 years ago

aheiland commented 4 years ago

https://github.com/viktorlarsson/vue-tiny-slider/blob/a0ba40447e76ddfe55e5944d72981ac701ccc54c/src/index.js#L5

the events in the event list will never work because of https://vuejs.org/v2/guide/components-custom-events.html#Event-Names

pySilver commented 4 years ago

hm, looks like it works fine.

<tiny-slider @indexChanged="onSlideIndexChanged">...</tiny-slider>

gracescharf commented 3 years ago

yeah so when i have this: <tiny-slider ref="main" v-bind="mainSliderOptions" @indexChanged="onSlideChange"> i get this error in the console: image

and when i have this: <tiny-slider ref="main" v-bind="mainSliderOptions" @index-changed="onSlideChange"> nothing happens.

basically, none of the custom events work at this moment.