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
Fork this template to reproduce issue.
The text was updated successfully, but these errors were encountered:
我写的:
<ng-template #tree let-node="node"> <ol class="dd-list"> <li class="dd-item dd3-item" [class]="item.classes" [attr.data-id]="item.id" *ngFor="let item of node"> <div class="dd-handle dd3-handle" (mouseenter)="itemButtonShow[item.id]=true" (mouseleave)="itemButtonShow[item.id]=false" (touchstart)="itemTouchStart(item)"> <div class="dd3-content"> {{item.content}} </div> </div> <ng-container *ngIf="item.children"> <ng-template *ngTemplateOutlet="tree;context:{node:item.children}"></ng-template> </ng-container> </li> </ol> </ng-template>
Sorry, something went wrong.
No branches or pull requests
Expected behavior
Actual behavior
Steps to reproduce the behavior
Fork this template to reproduce issue.
The text was updated successfully, but these errors were encountered: