We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using rxjs observables that are inside a class property. I'd like to use it in the display like that:
Here "counterObject" is my class object and "count" is an Observable<number>
Observable<number>
<span>{$counterObject.count}</span>
That gives me a compile error because counterObject is not a store.
allow something like that:
{$(counterObject.count)}
{counterObject.$count} {$counterObject.count}
{counterObject.$count}
{$counterObject.count}
would make my life easier
The text was updated successfully, but these errors were encountered:
Duplicate of #4079.
Sorry, something went wrong.
No branches or pull requests
Describe the problem
I'm using rxjs observables that are inside a class property. I'd like to use it in the display like that:
Here "counterObject" is my class object and "count" is an
Observable<number>
<span>{$counterObject.count}</span>
That gives me a compile error because counterObject is not a store.
Describe the proposed solution
allow something like that:
{$(counterObject.count)}
Alternatives considered
{counterObject.$count}
{$counterObject.count}
Importance
would make my life easier
The text was updated successfully, but these errors were encountered: