Angular 7:通过指令

时间:2018-10-21 13:04:24

标签: angular angular-material angular7

我坚持使用该指令。尝试通过自定义指令为按钮添加“ mat-raised-button”和“ color”。但这没有用。请帮助我工作。 代码在这里,

import { Directive, ElementRef, Renderer2, HostListener, AfterViewInit } from '@angular/core';
import { MatRipple } from '@angular/material';
import { MatRipple } from '@angular/material';
@Directive({
    selector: '[appButton]',
    providers: [MatRipple]
})
export class ButtonDirective{
    constructor(el: ElementRef, renderer: Renderer2, ripple: MatRipple) {
        renderer.setAttribute(el.nativeElement, 'mat-raised-button', '');
        renderer.setAttribute(el.nativeElement, 'color', 'primary');
    }

}

0 个答案:

没有答案