vue中动态绑定类名v-bind:class的几种常见的用法(以导航菜单点击高亮为例讲解)

简介: vue中动态绑定类名v-bind:class的几种常见的用法(以导航菜单点击高亮为例讲解)

问题描述

vue中动态绑定类名:class的用法比较灵活,本案例以导航菜单点击高亮为例,简单进行讲解,我们先看一下最终的效果图。

GIF 2021-3-13 22-40-28.gif

方式一(对象写法)

代码图示如下

snipaste_20210313_225627.png

代码附上

<template>
  <div id="app">
    <div class="nav">
      <div
        class="item"
        :class="{ 'highLight': index == highLight }"
        v-for="(item, index) in navArr"
        :key="index"
        @click="changeHighLight(index)"
      >
        {{ item }}
      </div>
    </div>
  </div>
</template>
<script>
export default {
  data() {
    return {
      navArr: ["导航一", "导航二", "导航三", "导航四", "导航五", "导航六"],
      highLight: 0,
    };
  },
  methods: {
    changeHighLight(index) {
      this.highLight = index;
    },
  },
};
</script>
<style lang="less" scoped>
.nav {
  width: 240px;
  height: 100%;
  .item { width: 100%; height: 50px; background-color: #e9e9e9;
          line-height: 50px; text-align: center; cursor: pointer; }
  .item:hover { background-color: #faf; }
  .highLight {
    background-color: #faf;
  }
}
</style>

方式二(methods写法)

代码图示如下

snipaste_20210313_231530.png

代码附上

<template>
  <div id="app">
    <div class="nav">
      <div
        class="item" :class="fn(index)"
        v-for="(item, index) in navArr"
        :key="index" @click="changeHighLight(index)"
      >
        {{ item }}
      </div>
    </div>
  </div>
</template>
<script>
export default {
  data() {
    return {
      navArr: ["导航一", "导航二", "导航三", "导航四", "导航五", "导航六"],
      highLight: 0,
    };
  },
  methods: {
    fn(index) {
      if (index == this.highLight) { return "highLight"; }
    },
    changeHighLight(index) {
      this.highLight = index;
    },
  },
};
</script>
<style lang="less" scoped>
.nav {
  width: 240px; height: 100%;
  .item {
    width: 100%; height: 50px; background-color: #e9e9e9;
    line-height: 50px; text-align: center; cursor: pointer;
  }
  .item:hover { background-color: #faf; }
  .highLight { background-color: #faf; }
}
</style>

方式三(computed写法)

计算属性的写法和methods的写法略有不同,请看注释

代码附上

<template>
  <div id="app">
    <div class="nav">
      <div class="item" :class="eee(index)" v-for="(item, index) in navArr"
        :key="index" @click="changeHighLight(index)" >
        {{ item }}
      </div>
    </div>
  </div>
</template>
<script>
export default {
  data() {
    return {
      navArr: ["导航一", "导航二", "导航三", "导航四", "导航五", "导航六"],
      highLight: 0,
    };
  },
  computed: {
    /* 直接这样写就会报错: Error in render: "TypeError: _vm.eee is not a function"
       计算属性和方法的写法略有不同,计算属性里面要return 一个函数*/
    // eee(index){
    //   if(index == this.highLight){
    //     return "highLight"
    //   }else{
    //     return "kkk"
    //   }
    // }
    // 正确写法,如果计算属性要接收参数,要return一个函数,在这个函数里面接收参数,并return对应的值
    //          如果不接收参数,直接return值即可
    eee() {
      return (index) => {
        if (index == this.highLight) {
          return "highLight";
        }
      };
    },
  },
  methods: {
    changeHighLight(index) { this.highLight = index; },
  },
};
</script>
<style lang="less" scoped>
.nav {
  width: 240px; height: 100%;
  .item { width: 100%; height: 50px; background-color: #e9e9e9; line-height: 50px; text-align: center; cursor: pointer; }
  .item:hover { background-color: #faf; }
  .highLight { background-color: #faf; }
}
</style>

总结

:class除了上述三种写法以外,还有数组的写法、三元表达式的写法。不过我个人觉得,别的写法和上述介绍的写法都类似,触类旁通。灵活运用上述三种写法,基本上可以解决绝大多数的问题场景

好记性不如烂笔头,记录一下。最后附上官方文档的地址:
https://cn.vuejs.org/v2/guide/class-and-style.html
相关文章
|
5天前
|
缓存 JavaScript 前端开发
vue学习第四章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中计算属性的基本与复杂使用、setter/getter、与methods的对比及与侦听器的总结。如果你觉得有用,请关注我,将持续更新更多优质内容!🎉🎉🎉
vue学习第四章
|
5天前
|
JavaScript 前端开发
vue学习第九章(v-model)
欢迎来到我的博客,我是瑞雨溪,一名热爱JavaScript与Vue的大一学生,自学前端2年半,正向全栈进发。此篇介绍v-model在不同表单元素中的应用及修饰符的使用,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
vue学习第九章(v-model)
|
5天前
|
JavaScript 前端开发 开发者
vue学习第十章(组件开发)
欢迎来到瑞雨溪的博客,一名热爱JavaScript与Vue的大一学生。本文深入讲解Vue组件的基本使用、全局与局部组件、父子组件通信及数据传递等内容,适合前端开发者学习参考。持续更新中,期待您的关注!🎉🎉🎉
vue学习第十章(组件开发)
|
10天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
10天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
11天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
11天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
11天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
12天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
10天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉