[Vuejs]-Can We Get Vue to 'Detect Changes' to an Array If We Use `Filter()`?

0๐Ÿ‘

โœ…

    parts.splice(parts.findIndex(part => part.id === change.doc.id), 1);

I got the splice in there while still keeping as 1 line, so m happy! ๐Ÿค“

Leave a comment