Make a label clickable

Hi, iam new to vaadin and i want to know how to make a label clickable and it navigates the page to another class.
That’d be of great help if anyone could see into this.
ThankYou
D.

Use Button with BUTTON_LINK style (
Button Looks Like a Link
).

Thankyou. That worked.
Can you tell me how to remove the underline from this BUTTON_LINK style.
ThankYou
D.

In
styles

.css
there is:

.v-button-link .v-button-caption { text-decoration: underline; color: inherit; text-align: left; } So, I belive, you need to remove
text-decoration
from the style to get the button text not underlined.