给我一个ElementUI的搜索框,将背景色设置为黑色
时间: 2024-03-25 08:39:25 浏览: 73
好的,您可以使用 `style` 属性或者 CSS 样式表给 ElementUI 的搜索框设置背景色,以下是两种方法的示例:
1. 使用 `style` 属性
```html
<template>
<el-input
placeholder="请输入搜索关键词"
v-model="searchText"
suffix-icon="el-icon-search"
@keyup.enter.native="handleSearch"
style="background-color: black;"
/>
</template>
<script>
export default {
data() {
return {
searchText: ''
}
},
methods: {
handleSearch() {
// 处理搜索逻辑
console.log('search:', this.searchText)
}
}
}
</script>
```
2. 使用 CSS 样式表
```html
<template>
<el-input
placeholder="请输入搜索关键词"
v-model="searchText"
suffix-icon="el-icon-search"
@keyup.enter.native="handleSearch"
class="my-input"
/>
</template>
<script>
export default {
data() {
return {
searchText: ''
}
},
methods: {
handleSearch() {
// 处理搜索逻辑
console.log('search:', this.searchText)
}
}
}
</script>
<style>
.my-input .el-input__inner {
background-color: black;
}
</style>
```
注意:这里使用了 `.my-input` 类选择器来限定样式的作用范围,如果您没有使用类名或者其他选择器来限定样式的作用范围,那么样式可能会影响到其他的 ElementUI 组件。
阅读全文