css
Description
Optional. Adds a custom style to a buttonUsage
css?: string;
Example
<template>
<div class="demo-box">
<Button type="primary" css="my" :onclick="onclick">Click Me</Button>
</div>
</template>
<style scoped>
.demo-box :deep(button.my){
background-color: gold;
}
</style>
Related article: Styling a button