父子互传值

文章介绍了在Vue应用中,如何通过父子组件间的props和emits机制实现数据的双向传递,展示了父组件向子组件传递数据以及子组件响应并回传数据的过程。
摘要由CSDN通过智能技术生成

父级代码

<template>
  <s-page v-bind="breadcrumbs">
    <s-center>
      <s-btn label="传父值" color="primary" @click="onChildDialog" />
      <div>子级的值:{{ childVal }}</div>
    </s-center>
  </s-page>

  <childDialog
    v-if="childShow"
    v-model="childShow"
    @operate="closeChildDialog"
    :parentVal="parentVal"
  />
</template>

<script setup>
import { ref } from 'vue';
import childDialog from './ChildDialog.vue';

/**
 * 父子互传值
 */
//  面包屑
const breadcrumbs = {
  desktop: ['/parent/child'],
  pagePadding: true,
};

const childShow = ref(false);

const parentVal = ref(null);

const childVal = ref(null);

/**
 * 打开子级dialog
 */
const onChildDialog = () => {
  childShow.value = true;
  parentVal.value = '父级的数据';
};

/**
 * 关闭子级dialog
 */
const closeChildDialog = (val) => {
  childShow.value = false;
  childVal.value = val;
};
</script>

<style lang="scss" scoped></style>

子级代码

<template>
  <s-dialog cancel-btn size="small">
    <template v-slot:body> parentVal:{{ props.parentVal }}</template>
    <template v-slot:btn>
      <s-btn-save label="传子值" @click="operateParent" />
    </template>
  </s-dialog>
</template>

<script setup>
// 父子互传值-dialog
const emits = defineEmits(['operate']);

const props = defineProps(['parentVal']);

const operateParent = () => {
  emits('operate', '子级的数据');
};
</script>

<style lang="scss" scoped></style>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值