vue3 把antd 的Modal组件作为子组件

该文章展示了一个Vue应用中,父组件如何通过点击按钮触发子组件的弹窗显示。子组件使用A-Modal实现,并通过v-model双向绑定来控制弹窗的可见性。父组件通过ref进行交互,而子组件则定义了自定义事件来更新其可见状态。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.在父组件,点击一个按钮,弹窗出现,把弹窗当做子组件

<template>
  <div>
    <a-button type="primary" @click="add">新增</a-button>
    <add-material v-model="fieldData.addVisible"></add-material>
  </div>
</template>

<script setup>
import addMaterial from './components/add-material.vue';
import { ref } from 'vue';
const fieldData = ref({
  addVisible: false,
});
const add = () => {
  fieldData.value.addVisible= true;
};
</script>

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

2.子组件

<template>
  <div>
    <a-modal  v-model:visible="modalVisible" title="Basic Modal" @ok="handleOk" @cancel="cancel">
      <p>Some contents...</p>
      <p>Some contents...</p>
      <p>Some contents...</p>
    </a-modal>
  </div>
</template>

<script setup>
import { defineProps, defineEmits } from 'vue';
const props = defineProps({
  modelValue: {
    type: Boolean,
  },
});
const emit = defineEmits(['update:modelValue']);
const modalVisible = computed({
  get: () => props.modelValue,
  set: v => emit('update:modelValue', v),
});
// 确定按钮的回调
const handleOk = () => {
  console.log('%c Line:21 🧀', 'color:#6ec1c2');
};
</script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值