用vue写一个下拉框
时间: 2023-07-01 21:18:16 浏览: 106
vue实现的下拉框功能示例
5星 · 资源好评率100%
当然可以,以下是用 Vue.js 写的一个简单的下拉框组件:
```vue
<template>
<div class="dropdown">
<div class="dropdown-toggle" @click="showDropdown = !showDropdown">
{{ selectedOption }}
<span class="caret"></span>
</div>
<div class="dropdown-menu" v-show="showDropdown">
<div class="dropdown-item"
v-for="(option, index) in options"
:key="index"
@click="selectOption(option)">
{{ option }}
</div>
</div>
</div>
</template>
<script>
export default {
props: {
options: {
type: Array,
required: true
},
value: {
type: String
}
},
data() {
return {
showDropdown: false,
selectedOption: this.value || this.options[0]
};
},
methods: {
selectOption(option) {
this.selectedOption = option;
this.showDropdown = false;
this.$emit("input", option);
}
},
watch: {
value(newValue) {
this.selectedOption = newValue;
}
}
};
</script>
<style>
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-toggle {
display: flex;
align-items: center;
padding: 0.5rem;
background-color: #f8f9fa;
border: 1px solid #ced4da;
border-radius: 0.25rem;
cursor: pointer;
}
.dropdown-toggle .caret {
margin-left: auto;
border-top: 0.3rem solid;
border-right: 0.3rem solid transparent;
border-left: 0.3rem solid transparent;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
min-width: 10rem;
padding: 0.5rem 0;
margin: 0.125rem 0 0;
font-size: 1rem;
color: #212529;
text-align: left;
list-style: none;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: 0.25rem;
}
.dropdown-menu .dropdown-item {
display: block;
width: 100%;
padding: 0.25rem 1.5rem;
clear: both;
font-weight: 400;
color: #212529;
text-align: inherit;
white-space: nowrap;
background-color: transparent;
border: 0;
}
.dropdown-menu .dropdown-item:hover {
color: #fff;
background-color: #007bff;
}
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
color: #fff;
text-decoration: none;
background-color: #007bff;
}
.dropdown-menu .dropdown-item:active {
color: #fff;
background-color: #007bff;
}
.dropdown-menu .dropdown-item.disabled,
.dropdown-menu .dropdown-item:disabled {
color: #6c757d;
background-color: transparent;
}
.dropdown-menu .dropdown-item:not(:first-child) {
border-top: 1px solid #ced4da;
}
</style>
```
这个组件的工作原理是:
- `props` 中的 `options` 是一个数组,表示下拉框中的选项列表;
- `props` 中的 `value` 是一个字符串,表示当前选中的选项;
- `data` 中的 `showDropdown` 是一个布尔值,表示下拉框是否可见;
- `data` 中的 `selectedOption` 是一个字符串,表示当前选中的选项;
- `methods` 中的 `selectOption` 方法用于选中一个选项;
- `watch` 中的 `value` 方法用于在 `value` 改变时更新 `selectedOption`。
我们可以在父组件中使用这个组件并传递选项和当前选中的选项,例如:
```vue
<template>
<div>
<dropdown :options="options" v-model="selectedOption" />
<p>你选择的选项是:{{ selectedOption }}</p>
</div>
</template>
<script>
import Dropdown from './Dropdown.vue';
export default {
components: {
Dropdown
},
data() {
return {
options: ['选项 1', '选项 2', '选项 3'],
selectedOption: '选项 1'
};
}
};
</script>
```
在这里,我们使用 `Dropdown` 组件并传递了一个选项列表和当前选中的选项。我们还使用了 `v-model` 指令来双向绑定当前选中的选项。当用户选择一个选项时,`selectedOption` 的值会相应地更新。
阅读全文