我是靠谱客的博主 个性短靴,最近开发中收集的这篇文章主要介绍Vue点击切换样式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

先看效果图
在这里插入图片描述

这里直接是上代码

<template>
  <ul>
    <li :class="[index == status  ? 'bechoice' : '']" v-for="(item,index) in list" :key="index" @click="choice(index)">
        {{item.text}}
    </li>
  </ul>
</template>

<script>
export default {
  name: "Recharge",
  data() {
    return {
      status: 0,
      list: [
        { text: "热点" },
        { text: "政治" },
        { text: "娱乐" },
        { text: "新闻" },
        { text: "军事" },
        { text: "体育" }
      ]
    };
  },
  methods: {
    choice(index) {
      this.status = index;
    }
  }
};
</script>

<style scoped>
ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
}
li {
  width: 200px;
  height: 30px;
  background: #eeeeee;
  color: #000;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px;
}
.bechoice {
  background: red;
  color: #eeeeee;
}
</style>

注意事项:这里必须要用for循环取到索引

最后

以上就是个性短靴为你收集整理的Vue点击切换样式的全部内容,希望文章能够帮你解决Vue点击切换样式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部