css
Description
Adds a custom style to the Select control.Usage
css?: string;
Example
<template>
<div class="demo-box">
<Select :options="options" css="my-class" />
</div>
</template>
<style scoped>
.demo-box :deep(.my-class) {
background-color: gold;
}
</style>
Related article: Styling a select