I am pretty new to Angular and have a requirement where I need to read the selected value from a drop-down list and send the selected value to a component while routing. Can som
Try this,
HTML:
Test Event Link
TS:
testEvent(event) {
console.log(event) //check the event object and get your required values.
}