关于点击同一个按钮,切换内容的demo。vue.js
html代码
<template>
<div class="test">
<!-- 点击按钮 -->
<button @click="change()" :class="{active:index}">下一个</button>
<!-- 切换内容 -->
<div id="tab">
<div v-show="index === 0" class="item">
cat 猫猫
</div>
<div v-show="index === 1" class="item">
猫猫
</div>
<div v-show="index === 2" class="item">
cat
</div>
</div>
</div>
</template>
js代码
<script>
export default {
data () {
return {
// 默认未 0,默认显示第一个item
index: 0,
}
},
methods: {
// 点击 button 时,循环切换 index 的值 (0,1,2)
change () {
if(this.index >= 2 ) {
this.index = 0
} else{
this.index ++
}
console.log(this.index)
}
}
}
这是一个使用Vue.js实现的点击按钮切换内容的简单示例。通过点击按钮,内容会在三个不同的选项之间循环切换,利用v-show指令控制元素的显示与隐藏。此示例展示了Vue.js的数据绑定和事件处理能力。
8481

被折叠的 条评论
为什么被折叠?



