zorro库的toolTip组件的show/hide方法如何使用呢,在官方文档找不到示例
<button #tooltipBtn nz-button nzTooltipTitle\="prompt text" nzTooltipPlacement\="topLeft" nz-tooltip\> Align edge / 边缘对齐 </button\> <button type="button" (click)="tooltipBtn.show()" nz-button >Click</button>
import { NzTooltipDirective } from 'ng-zorro-antd'
@ViewChild(NzTooltipDirective, { static: false }) dirRef?: NzTooltipDirective;
hide() {this.dirRef.hide()}
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
import { NzTooltipDirective } from 'ng-zorro-antd'
@ViewChild(NzTooltipDirective, { static: false }) dirRef?: NzTooltipDirective;
hide() {
this.dirRef.hide()
}