欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

vue3封装Notification组件的完整步骤记录

时间:2022-07-01 09:47:40|栏目:vue|点击:

跳过新手教程的小白,很多东西都不明白,不过是为了满足一下虚荣心,写代码的成就感

弹窗组件的思路基本一致:向body插入一段HTML。我将从创建、插入、移除这三个方面来说我的做法

先来创建文件吧

|-- packages
    |-- notification
        |-- index.js # 组件的入口
        |-- src
            |-- Notification.vue # 模板
            |-- notification.ts

创建

用到h,render,h是vue3对createVnode()的简写。h()把Notification.vue变成虚拟dom,render()把虚拟dom变成节点。render在渲染时需要一个节点(第二个参数),创建一个只用来装Notification.vue的容器,我要的只是Notification.vue里面的HTML结构,所以创建了container先将vm变成节点,也就是HTML,这样才能插到body中

import { h, render } from "vue"
import NotificationVue from "./Notification.vue"

let container = document.createElement('div')
let vm = h(NotificationVue)
render(vm, container)

懵逼点:为什么.vue文件在App.vue中能渲染出来,在这里需要先转成虚拟dom再转成节点

插入

通过document.body.appendChild把这个节点内的第一个子元素插入body中,这样就能在页面上显示出来了。

document.body.appendChild(container.firstElementChild)

移除

vue不能直接操作dom,只能操作虚拟dom了,用null覆盖掉原来的内容即可

render(null, container)

没懂vue实现原理也只是把效果做出来而已,网上查阅资料也差不多一个月了才做出来,看来我确实不适合编程

完整代码

// Notification.vue
<template>
  <div class="notification">
    Notification
    <button @click="onClose">x</button>
  </div>
</template>

<script setup lang="ts">
interface Props {
  onClose?: () => void
}

defineProps<Props>()
</script>

有个疑问为什么.vue文件在app中又能直接被渲染出来

// notification.ts
import { h, render } from "vue"
import NotificationVue from "./Notification.vue"
const notification = () => {
  let container = document.createElement('div')
  let vm = h(NotificationVue, {onClose: close})
  render(vm, container)
  document.body.appendChild(container.firstElementChild)

  // 手动关闭
  function close() {
    render(null, container)
  }
}
export default notification

在App.vue中使用

// App.vue
<script setup lang="ts">
import {
  BNotification
} from "../packages"

BNotification()
</script>

总结

上一篇:vue elementUI表格控制显示隐藏对应列的方法

栏    目:vue

下一篇:vue3中update:modelValue的使用与不生效问题解决

本文标题:vue3封装Notification组件的完整步骤记录

本文地址:http://www.codeinn.net/misctech/206489.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有