[F7VUE] 4.5.0: type check failed for prop "sortableMoveElements"

If I pass the sortable-move-elements prop, I’m getting the (VUE) error:

Invalid prop: type check failed for prop “sortableMoveElements”. Expected Boolean, got String with value “false”.

 <f7-list
    sortable
    sortable-enabled
    sortable-move-elements=false
    ...
>

If I put quotes around ‘false’ doesn’t change anything.

How can I avoid this?

Hi, it should be

:sortable-move-elements="false"

note “colon” in the beginning of prop name

Oh Bummer - thanks… I read over it 10 times and didn’t see it :roll_eyes:

1 Like