你可以在 <el-radio-button> 标签中添加 border="none" 属性,像这样: 复制 <el-radio-button label="车门" border="none"></el-radio-button> 这样就可以去掉车门按钮的边框了。 并不行
时间: 2023-10-07 17:09:45 浏览: 75
微信小程序分享功能之按钮button 边框隐藏和点击隐藏
很抱歉,我之前的回答有误。在 ElementUI 的文档中,并没有提供 `border` 这个属性来控制 `<el-radio-button>` 的边框。如果需要去掉边框,可以通过自定义样式来实现。例如:
```html
<template>
<el-radio-button label="车门" class="no-border"></el-radio-button>
</template>
<style>
.no-border {
border: none;
}
</style>
```
在上面的代码中,我们为 `<el-radio-button>` 添加了一个 `class` 为 `no-border` 的样式,并设置了 `border: none;` 来去掉边框。
阅读全文