文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

vue遮罩和ref的使用方法是什么

2023-07-05 19:34

关注

这篇文章主要讲解了“vue遮罩和ref的使用方法是什么”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“vue遮罩和ref的使用方法是什么”吧!

创建conform.vue,其内容如下:

<template>  <div v-if="fade">    <div class="xtx-confirm" :class="{fade}">      <div class="wrapper" :class="{fade}">        <div class="header">          <h4>{{title}}</h4>          <a @click="cancel" href="JavaScript:;" rel="external nofollow"  >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;      h4 {        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>

App.vue中的内容如下:

<!--方式1--><template>  <button  @click="show_open">打开弹窗</button>  <conform ref="conform_ref"></conform></template><script >import conform from "@/components/conform.vue";import {ref} from "vue";export default {  name: 'App',  components:{ conform},  setup(){    const conform_ref = ref(null)    const show_open = ()=>{      conform_ref.value.open()    }    // 特别要注意这种方式,虽然conform_ref没在    // template中使用但是一定要返回,否则会出问题    return{conform_ref, show_open}  }}</script><!--方式二--><!--<template>--><!--  <button  @click="validate_ref">主要按钮</button>--><!--  <conform ref="validate" ></conform>--><!--</template>--><!--<script setup>--><!--import conform from './components/conform.vue'--><!--import {ref} from "vue";--><!--const validate = ref(null)--><!--const validate_ref = ()=>{--><!--  validate.value.open()--><!--  console.log(validate.value)--><!--}--><!--</script>--><!--<style scoped lang="less">--><!--</style>-->

效果如下:

vue遮罩和ref的使用方法是什么

特别需要注意的是方式一这种方式,虽然conform_ref没在 template中使用但是一定要返回,否则会出问题

感谢各位的阅读,以上就是“vue遮罩和ref的使用方法是什么”的内容了,经过本文的学习后,相信大家对vue遮罩和ref的使用方法是什么这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯