Vue3造轮子--Dialog组件


theme: condensed-night-purple

前言: 前言:在写Dialog组件时,写的笔记,记录一下学习过程~

Dialog组件

一.Dialog需求分析与API设计

1. 参考一下别人的对话框
  • AntD
  • 还可以参考 Bulma、Element、iView、Vuetify等
2. 需求
  • 点击后弹出
  • 有遮罩层 overlay
  • 有 close 按钮
  • 有标题
  • 有内容
  • 有 yes / no 按钮

二.API设计

1.Dialog组件怎么用

<Dialog        visible        title="标题"        @yes="fn1" @no="fn"        ></Dialog>

三.写代码

  • 步骤

    • 写HTML,CSS,JS
    • 测试
    • 改写代码
    • 再测试
    • 再改写
    • 在测试
    • ...
  • 让 Dialog 支持 visible 属性

注意不能修改 props

  • 让 Dialog 可以点击关闭

  • 让 Dialog 支持自定义内容

    • ~~使用插槽slot~~
    • 使用具名插槽
  • 把 Dialog 移到 body 下

    • 防止 Dialog 被遮挡
    • 新组件:Teleport
  • 一句话打开 Dialog

    • 我不想声明 visible 变量,然后改变它的值 > 技术点: 动态挂在组件

四. 效果展示

image.png

image.png

源码已放到Gitee托管,感兴趣的小伙伴可以访问 https://gitee.com/boheweb/mint-ui

Vue 3 的函数式组件是一种轻量级的组件形式,它通过使用 `defineComponent` 函数来定义组件。对于 `el-dialog` 组件的函数式实现,你可以按照以下步骤进行: 1. 首先,导入所需的 Vue 3 相关模块: ```javascript import { defineComponent, h } from 'vue'; ``` 2. 使用 `defineComponent` 函数创建一个函数式组件,传入一个对象作为参数: ```javascript const ElDialog = defineComponent({ name: 'ElDialog', functional: true, // 声明为函数式组件 props: { // 定义组件的 props title: String, content: String, // 其他 props... }, render(props, context) { // 组件的渲染逻辑 const { title, content } = props; return h('div', { class: 'el-dialog', }, [ h('h2', { class: 'el-dialog-title' }, title), h('p', { class: 'el-dialog-content' }, content), // 其他内容... ]); } }); ``` 在上述代码中,我们使用 `h` 函数来创建虚拟节点,以描述组件的结构。通过传入标签名和属性,我们可以构建出 `el-dialog` 组件的结构。 3. 最后,我们需要在父组件中使用 `ElDialog` 组件: ```html <template> <div> <el-dialog title="对话框标题" content="对话框内容"></el-dialog> </div> </template> <script> import ElDialog from './ElDialog.vue'; export default { components: { ElDialog, }, }; </script> ``` 在父组件中,我们可以直接使用 `el-dialog` 标签,并传入所需的属性。 这样,你就可以实现一个基于函数式组件的 `el-dialog` 组件了。当然,上述代码只是一个简单的示例,你可以根据实际需求进行更复杂的组件逻辑和样式定义。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值