これに続くのはplunkerです。ここで増減ボタンを使用して任意の数値を設定することができます。私は負の数を設定するためにマイナスボタンを何度もクリックすることができます。これをわずか数に制限するにはどうすればよいですか?例えば0〜5のみである。 0より大きく5を超えてはならないことを意味します。角2のカウンターの値を制限する方法
export class CustomCounterComponent {
counterValue = 0;
@Output() counterChange = new EventEmitter();
@Input()
get counter() {
return this.counterValue;
}
set counter(val) {
this.counterValue = val;
this.counterChange.emit(this.counterValue);
}
decrement() {
this.counter--;
}
increment() {
this.counter++;
}
}
あなたが限度で何を意味するか、あなただけの –