15 lines
383 B
TypeScript
15 lines
383 B
TypeScript
import {Component, Input} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'sae-multi-selector',
|
|
imports: [],
|
|
templateUrl: './multi-selector.html',
|
|
styleUrl: './multi-selector.scss'
|
|
})
|
|
export class MultiSelector {
|
|
@Input() label!: string;
|
|
@Input() choices: any = ['choix 1', 'choix 2', 'choix 3'];
|
|
@Input() selectedChoices: any = ['choix 4'];
|
|
displayDropdown = true;
|
|
|
|
}
|