css
Description
Adds a custom style to the Toolbar control.Usage
css?: string;
Example
Defining CSS class:
<template>
<Toolbar css="somebar" />
</template>
<style scoped>
.somebar {
background-color: #f0f0f0;
}
</style>
Related article: Styling a toolbar