ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
27 lines (25 loc) • 712 B
text/typescript
import { Component } from '@angular/core';
@Component({
selector: 'nz-demo-anchor-fixed',
template: `
<nz-affix>
<nz-anchor>
<nz-link nzHref="#何时使用" nzTitle="何时使用"></nz-link>
<nz-link nzHref="#components-anchor-demo-basic" nzTitle="Basic demo"></nz-link>
<nz-link nzHref="#API" nzTitle="API">
<nz-link nzHref="#API-Anchor" nzTitle="nz-anchor"></nz-link>
<nz-link nzHref="#API-AnchorLink" nzTitle="nz-link"></nz-link>
</nz-link>
</nz-anchor>
</nz-affix>
`,
styles: [
`
:host ::ng-deep nz-anchor {
display: block;
width: 250px;
}
`
]
})
export class NzDemoAnchorFixedComponent { }