menuCss
Description
Optional. Controls the CSS class applied to the top container of the popup menuUsage
menuCss?: string;
Example
Defining CSS class for the top container of popup menu:
<template>
<Toolbar menuCss="somemenu" />
</template>
<style scoped>
.somemenu {
background-color: #f0f0f0;
}
</style>