vue 优雅的跨组件传递参数~

在 Vue 中,可以通过 props、事件、vuex 等方式来实现跨组件传递参数,以下是其中一些优雅的方式:

  1. Props

使用 props 可以将数据从父组件传递给子组件,实现组件之间的数据传递。

<template>
  <child-component :msg="parentMsg"></child-component>
</template>

<script>
  export default {
    data() {
      return {
        parentMsg: 'Hello World'
      }
    }
  }
</script>

<child-component>
  <template>
    <div>{{ msg }}</div>
  </template>

  <script>
    export default {
      props: {
        msg: String
      }
    }
  </script>
</child-component>

  1. 事件

使用事件可以在组件中触发事件来传递数据给父组件或者兄弟组件。

<template>
  <button @click="handleClick">向父组件传递参数</button>
  <child-component @passData="handlePassData"></child-component>
  <sibling-component :msg="siblingMsg" @passData="handlePassData"></sibling-component>
</template>

<script>
  export default {
    data() {
      return {
        siblingMsg: ''
      }
    },
    methods: {
      handleClick() {
        this.$emit('passData', 'Hello World')
      },
      handlePassData(data) {
        console.log(data)
        this.siblingMsg = data
      }
    }
  }
</script>

<child-component>
  <template>
    <button @click="handleClick">向父组件传递参数</button>
  </template>

  <script>
    export default {
      methods: {
        handleClick() {
          this.$emit('passData', 'Hello Vue')
        }
      }
    }
  </script>
</child-component>

<sibling-component>
  <template>
    <div>{{ msg }}</div>
  </template>

  <script>
    export default {
      props: {
        msg: String
      },
      methods: {
        handleClick() {
          this.$emit('passData', 'Hello React')
        }
      }
    }
  </script>
</sibling-component>

  1. Vuex

在 Vuex 状态管理库中,可以将数据存储在全局的状态中,实现组件之间的共享数据。

<template>
  <div>{{ message }}</div>
  <button @click="updateMessage">更新数据</button>
</template>

<script>
  import { mapState, mapMutations } from 'vuex'

  export default {
    computed: {
      ...mapState(['message'])
    },
    methods: {
      ...mapMutations(['UPDATE_MESSAGE']),
      updateMessage() {
        this.UPDATE_MESSAGE('Hello Vuex')
      }
    }
  }
</script>

在全局状态 store 中定义 message 和 UPDATE_MESSAGE 两个属性和方法,然后在组件中通过 mapState 和 mapMutations 将它们映射到组件的 computed 和 methods 中,就可以实现跨组件传递参数了。

以上是 Vue 中一些常见而优雅的跨组件传递参数的方式。不同的场景选择不同的方式,有助于提高代码的可读性和可维护性。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值