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
{{ message }}
This repository has been archived by the owner on Sep 16, 2022. It is now read-only.
The source of #1539 is that @deferred tries to be clever, and implements itself similar to a structural directive but doesn't go through all of the steps. It's trivial to add a workaround to fix #1539, but in the future it would be nice if:
<custom-comp@deferred></custom-comp>
... was basically a direct sugar of:
<template><custom-comp></custom-comp></template>
... where <custom-comp> is constructed lazily (using the loadDeferred() logic).
The text was updated successfully, but these errors were encountered:
The source of #1539 is that
@deferred
tries to be clever, and implements itself similar to a structural directive but doesn't go through all of the steps. It's trivial to add a workaround to fix #1539, but in the future it would be nice if:... was basically a direct sugar of:
... where
<custom-comp>
is constructed lazily (using theloadDeferred()
logic).The text was updated successfully, but these errors were encountered: