当前位置: 首页 > article >正文

vue Teleport和ref结合复用弹框组件

1、首先新建conform.vue组件,其内容为:

<template>
  <div v-if="fade">
    <div class="xtx-confirm" :class="{fade}">
      <div class="wrapper" :class="{fade}">
        <div class="header">
          <h3>{{title}}</h3>
          <a @click="cancel" href="JavaScript:;" >x</a>
        </div>
        <div class="body">
          <i class="iconfont icon-warning"></i>
          <span>{{text}}</span>
        </div>
        <div class="footer">
          <span @click="cancel" class="cancel">取消</span>
          <span @click="submit" class="submit">确认</span>
        </div>
      </div>
    </div>
  </div>
</template>
<script >
import { onMounted, ref,  } from 'vue'
export default {
  name: 'conform',
  props:{
    title: {
      type: String,
      default: '温馨提示'
    },
    text: {
      type: String,
      default: ''
    },
  },
  setup(){
    const fade = ref(false)
    const open = () => {
      fade.value = true
    }
// 取消
    const cancel = () => {
      fade.value = false
    }
// 确认
    const submit = () => {
      fade.value = false
    }
    return { fade, open, cancel, submit}
  }
}
</script>
<style scoped lang="less">
.xtx-confirm {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8888;
  background: rgba(0,0,0,0);
  &.fade {
    transition: all 0.4s;
    background: rgba(0,0,0,.5);
  }
  .wrapper {
    width: 400px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-60%);
    opacity: 0;
    &.fade {
      transition: all 0.4s;
      transform: translate(-50%,-50%);
      opacity: 1;
    }
    .header,.footer {
      height: 50px;
      line-height: 50px;
      padding: 0 20px;
    }
    .body {
      padding: 20px 40px;
      font-size: 16px;
      .icon-warning {
        color: red;
        margin-right: 3px;
        font-size: 16px;
      }
    }
    .footer {
      text-align: right;
      cursor: pointer;
      .cancel{
        margin-right: 20px;
        cursor: pointer;
      }
      .submit{
        cursor: pointer;
      }
    }
    .header {
      position: relative;
      h3 {
        font-weight: normal;
        font-size: 18px;
      }
      a {
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 20px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        color: #999;
        &:hover {
          color: #666;
        }
      }
    }
  }
}
</style>

2、新建Item.vue组件,(注意:重点就是复用其组件中的函数字段啥的)其内容为:

<template>
  <button  @click="show_open">打开弹窗</button>
  <conform ref="conform_ref" :text="my_text"></conform>
</template>

<script >
import conform from "@/components/conform.vue";
import {nextTick, ref} from "vue";
export default {
  name:'Item',
  components:{conform},
  setup(){
    const my_text = ref('你好呀')
    // 这段代码之所以不在这使用是因为别的地方要复用这段代码
    // const conform_ref = ref(null)
    //
    // const show_open = ()=>{
    //   conform_ref.value?.open()
    //   console.log(conform_ref.value);
    // }
    // return {my_text, conform_ref, show_open}
    return {my_text, ...open()}
  }
}

// 这段代码可以导出去用于复用
export const open = ()=>{
  const conform_ref = ref(null)
  const show_open = ()=>{
    conform_ref.value?.open()
    console.log(conform_ref.value);
  }
  return {conform_ref, show_open}
}
</script>
<style scoped>
</style>

需要注意的是:不是<script setup >这种方式才可以使用export

3、在App.vue中复用代码如下:

<template>
  <div id="modals"></div>
  <button  @click="show_open">App打开弹窗</button>
<!--  <Item></Item>-->
<!--  关于Teleport 在官网这个地方有讲解
https://cn.vuejs.org/guide/built-ins/teleport.html#multiple-teleports-on-the-same-target-->
  <Teleport to="#modals">
    <!-- 需要注意的是这里的ref必须要和open中的ref名字一样   -->
    <conform ref="conform_ref"></conform>
  </Teleport>
</template>

<script >
import conform from "@/components/conform.vue";
import {open} from '@/components/Item.vue'
export default {
  name: 'App',
  components:{conform},
  setup(){
    // ...open()中能解构出来show_open
    return{...open()}
  }
}

</script>

结果显示:

在这里插入图片描述


http://www.kler.cn/a/4414.html

相关文章:

  • 计算机网络 (45)动态主机配置协议DHCP
  • 计算机网络 (44)电子邮件
  • 字符串提取数字求和⭐
  • 小结:路由器和交换机的指令对比
  • 学成在线_内容管理模块_创建模块工程
  • 从0开始学习搭网站第二天
  • 统计字符串中每个字符出现的次数
  • C语言基础——流程控制语句
  • 深度学习的面试小记
  • VUE3 学习笔记(五)UI框架Element Plus
  • C/C++开发,编译环境搭建
  • HDFS概述
  • 查看mysql InnoDB引擎 线程模型信息
  • Modelsim仿真使用教程
  • Leetcode.1191 K 次串联后最大子数组之和
  • 数据结构之小端和大端之谜
  • Vue 点击图片放大显示功能
  • 11_nginx_document_uri
  • 信息打点-主机架构蜜罐识别WAF识别端口扫描协议识别服务安全
  • 测试开发进阶系列课程
  • 问卷中多选题该怎么分析?
  • 《毫无意义的工作》笔记——一个人的工作越明显对他人有益,他得到的酬劳就越低?
  • STM32之TIM编码器接口
  • uni-app使用uview组件中的封装
  • 【笔记】C# 泛型约束
  • 【华为OD机试 2023最新 】 回文字符串(C++)