Skip to main content

MenuLinkWithImage class

📖 Description​

The MenuLinkWithImage class defines a menu link item (with an image) for the Menu class. It is used to create a menu item that links to an URL. It is derived from the MenuLink class.


🆕 constructor​

Creates a new MenuLinkWithImage instance.

Signature​

constructor(
image: string,
label: string,
url: string,
target?: "self" | "blank"
): MenuLinkWithImage

Parameters​

NameTypeOptionalDescription
imagestringNoSpecifies the image.
labelstringNoSpecifies the item label.
urlstringNoSpecifies the URL to link to.
target"self" | "blank"YesSpecifies the target of the link.

Return value​

Returns a reference to the new MenuLinkWithImage instance.