v-img
v-img copied to clipboard
group not work in IE11
Hi, can you fix this?
[...document.querySelectorAll('img[data-vue-img-group="${el.dataset.vueImgGroup}"]')]
In this place an invalid transformation NodeList to array. Babel transpile this code using Array.from
that is unavailable in IE. Maybe try something like this [].slice.call(document.querySelectorAll('img[data-vue-img-group="${el.dataset.vueImgGroup}"]'))
?
Thx
This https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.26.0/polyfill.min.js polyfill solved this issue for IE11