v-img icon indicating copy to clipboard operation
v-img copied to clipboard

group not work in IE11

Open bogdand92 opened this issue 6 years ago • 1 comments

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

bogdand92 avatar May 29 '18 09:05 bogdand92

This https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.26.0/polyfill.min.js polyfill solved this issue for IE11

OleksiiBrylin avatar Dec 13 '18 12:12 OleksiiBrylin