I'm picking up time to use list in Vue. An inverted list for a computed display is displayed on the screen. I need to show it reversed so when you add an item it appears at the top. However, the way I did Vue is lost in removing the correct item from the list.
See my code: link
I made a button to add, which works correctly. In the "remove" I use the index of the item in the list to do a splice (), except that Vue uses this index in the inverted list, I imagined that it would use in the original list and then it would invert.