vue如何实现循环遍历多个按钮,当点击其中一个按钮时显示组件,再次点击隐藏组件,且点击其他按钮不能显示或者隐藏
时间: 2024-04-16 18:29:08
浏览: 220
你可以使用Vue的条件渲染和循环指令来实现循环遍历多个按钮,并且在点击按钮时显示或隐藏组件。
首先,在父组件中定义一个数组来存储按钮的状态,例如`buttonStatus`,初始时所有按钮的状态都设置为false,表示组件是隐藏的。然后,使用`v-for`指令循环遍历数组,创建多个按钮,并为每个按钮绑定点击事件。在点击事件中,通过修改对应按钮的状态来实现显示或隐藏组件。
示例代码如下:
```vue
<template>
<button v-for="(button, index) in buttonStatus" :key="index" @click="toggleComponent(index)">
Button {{ index + 1 }}
</button>
<ChildComponent v-if="componentVisible" />
</template>
<script>
import ChildComponent from './ChildComponent.vue';
export default {
components: {
ChildComponent
data() {
return {
buttonStatus: [],
componentVisible: false
methods: {
toggleComponent(index) {
this.buttonStatus = this.buttonStatus.map((status, i) => i === index ? !status : false);
this.componentVisible = !this.componentVisible;
</script>
```
最低
0.47元/天
开通会员,查看完整答案
成为会员后, 你将解锁
下载资源随意下
优质VIP博文免费学
优质文库回答免费看
C知道免费提问
付费资源9折优惠