我坚持使用该指令。尝试通过自定义指令为按钮添加“ 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');
}
}