yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
19 lines • 925 B
JavaScript
import { Component, Input } from '@angular/core';
var GlobalFooterComponent = /** @class */ (function () {
function GlobalFooterComponent() {
}
GlobalFooterComponent.decorators = [
{ type: Component, args: [{
selector: 'global-footer',
template: "\n <div *ngIf=\"links && links.length > 0\" class=\"links\">\n <a *ngFor=\"let i of links\" routerLink=\"{{i.href}}\" [attr.target]=\"i.blankTarget\">{{i.title}}</a>\n </div>\n <div class=\"copyright\"><ng-content></ng-content></div>\n ",
host: { '[class.ad-global-footer]': 'true' },
preserveWhitespaces: false,
},] },
];
GlobalFooterComponent.propDecorators = {
links: [{ type: Input }]
};
return GlobalFooterComponent;
}());
export { GlobalFooterComponent };
//# sourceMappingURL=global-footer.component.js.map