export class ElementRef {
public nativeElement: any;
constructor(nativeElement: any) { this.nativeElement = nativeElement; }
}
A wrapper around a native element inside of a View.
在一个View中的一个native元素的包装。
An ElementRef is backed by a render-specific element. In the browser, this is usually a DOM element.
一个ElementRef由一个特定于渲染的元素支持。在浏览器中,这通常是一个DOM元素。
37

被折叠的 条评论
为什么被折叠?



