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
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 usingArray.from
that is unavailable in IE. Maybe try something like this[].slice.call(document.querySelectorAll('img[data-vue-img-group="${el.dataset.vueImgGroup}"]'))
? Thx