alessiomaffeis / vue-picture-input

Mobile-friendly picture file input component for Vue.js 2-3 with image preview, drag and drop, EXIF orientation, and more

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Should use parseInt() for zIndex assignment

ugurarici opened this issue · comments

When assigning zIndex values component uses zIndex+1 and zIndex+2

When use component without bindig zIndex value, it is not adding 1 and 2 to an integer, because it is a string.


Now it is a string, so "9"+1 returns 91, but we want it to be 10.

You have to bind it to keep it as a Number on component


Now it is binded as integer and 9+1 returns 10, not 91 :)

In short: We should use parseInt(zIndex)+1 for zIndex assignments :)

Will be fixed in 3.0.1