trotyl / ng-vdom

(Developer Preview) A virtual-DOM extension for Angular, also work as React bridge.
260 stars 12 forks source link

Feature: not use non-keyed tracking by default #43

Open trotyl opened 5 years ago

trotyl commented 5 years ago

Current

When not specifying key, all children are tracked by non-keyed way (index of type).

Expected

Should be keyed by default, element without key should always be consider replaced.