父组件中通过$refs选择子组件中特定类名元素并修改其样式

该博客介绍了如何在Vue中通过$refs和$el属性,遍历子组件的子元素,根据className查找并修改特定样式,例如将默认按钮的背景颜色改为红色。示例中展示了在App.vue组件中监听按钮点击事件,然后遍历Student子组件内的el-button元素,实现样式的动态修改。
摘要由CSDN通过智能技术生成

刚开始是想通过父组件修改element-ui中的某个元素的样式。由于动态添加class不够方便,所以想通过$refs,根据类名选择出元素,做法如下

App.vue

<template>
  <div>
    <Student ref="student"></Student>
    <button @click="changeColor">改变背景</button>
  </div>
</template>

<script>
import Student from './components/Student';
export default {
  components: { Student },
  methods: {
    changeColor() {
      // 通过$refs选择子组件,$el选择元素数组,
      // 每个元素中有className是类名字符串(如'son1 son2')
      // 通过遍历循环判断出对应的元素,然后通过style修改
      this.$refs.student.$el.childNodes.forEach((item) => {
        if (item.className.indexOf('el-button--default') !== -1) {
          item.style.backgroundColor = 'red';
        }
      });
    },
  },
};
</script>

Student.vue

<template>
  <div>
    <el-button>默认按钮</el-button>
    <el-button type="primary">主要按钮</el-button>
    <el-button type="success">成功按钮</el-button>
    <el-button type="info">信息按钮</el-button>
    <el-button type="warning">警告按钮</el-button>
    <el-button type="danger">危险按钮</el-button>
  </div>
</template>

<script>
export default {};
</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值