You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Certain designs in Vapor that are incompatible with Vue Core might achieve better performance. This also applies to situations like implementing built-in directives.
Perhaps when we need to implement Vue4, we can consider such things :P
inheritAttrs
may affect performance:<div :id="expr" :title="expr2" />
inheritAttrs
is enabled. Since a prop might be overridden, neither of these can be optimized.expr
,expr2
, or$attrs
change, the entire props need to be re-patched.The text was updated successfully, but these errors were encountered: