vue3自定义按钮点击变颜色实现(多选功能)

实现效果图: 默认选中第一个按钮,未选中按钮为粉色,点击时颜色变为红色

利用动态类名,当定义isChange数值和下标index相同时,赋予act类名,实现变色效果

<template>
  <div class="page">
    <div class="btns" v-for="(item, index) in 6" :key="index">
      <div
        class="btn"
        :class="{ act: isChange.includes(index) }"
        @click="change(index)"
      >
        按钮{{ index + 1 }}
      </div>
    </div>
  </div>
</template>

<script>
import { ref } from 'vue';

export default {
  setup() {
    const isChange = ref([]);
    const change = (index) => {
      if (isChange.value.includes(index)) {
        // 如果按钮已经被选中,则移除该按钮的索引值
        isChange.value = isChange.value.filter((item) => item !== index);
      } else {
        // 如果按钮未被选中,则添加该按钮的索引值
        isChange.value.push(index);
      }
    };

    return { isChange, change };
  },
};
</script>

<style>
.page {
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
}

.btn {
  width: 60px;
  height: 30px;
  background-color: pink;
  margin: 10px;
}

.act {
  background-color: red;
}
</style>
相关推荐
NiNg_1_2348 分钟前
Echarts连接数据库,实时绘制图表详解
前端·数据库·echarts
如若1231 小时前
对文件内的文件名生成目录,方便查阅
java·前端·python
滚雪球~2 小时前
npm error code ETIMEDOUT
前端·npm·node.js
沙漏无语2 小时前
npm : 无法加载文件 D:\Nodejs\node_global\npm.ps1,因为在此系统上禁止运行脚本
前端·npm·node.js
supermapsupport2 小时前
iClient3D for Cesium在Vue中快速实现场景卷帘
前端·vue.js·3d·cesium·supermap
brrdg_sefg2 小时前
WEB 漏洞 - 文件包含漏洞深度解析
前端·网络·安全
胡西风_foxww2 小时前
【es6复习笔记】rest参数(7)
前端·笔记·es6·参数·rest
m0_748254882 小时前
vue+elementui实现下拉表格多选+搜索+分页+回显+全选2.0
前端·vue.js·elementui
星就前端叭3 小时前
【开源】一款基于Vue3 + WebRTC + Node + SRS + FFmpeg搭建的直播间项目
前端·后端·开源·webrtc
m0_748234523 小时前
前端Vue3字体优化三部曲(webFont、font-spider、spa-font-spider-webpack-plugin)
前端·webpack·node.js