首页 > 其他 > 详细

vue 简单版复制功能

时间:2021-07-30 23:17:19      阅读:20      评论:0      收藏:0      [点我收藏+]
父组件中使用
引入
技术分享图片

 

使用

技术分享图片

 

 

子组件 sphCopy.vue
 
<template>
  <div>
     <slot></slot>
     <div class=‘copyBox‘>
      <input ref="copyInput" />
    </div>
  </div>
</template>

<script type="text/ecmascript-6">
  export default {
    name:‘sphCopy‘,
    methods:{
       copy(v){
          console.log(v)
          this.$refs.copyInput.value=v;
          this.$refs.copyInput.select();
          document.execCommand("copy");
      //优化版 待验证   
       const aux = document.createElement(‘textarea‘);
                        aux.setAttribute(‘value‘,v );
                        document.body.appendChild(aux);
                        aux.select();
                        document.execCommand(‘copy‘);
                        document.body.removeChild(aux);
 
          this.$message({message:‘复制成功‘,type: ‘success‘});
      },
    }
  }
</script>

<style lang=‘scss‘ scoped>
.copyBox{
  opacity: 0;
  position: fixed;
  left: 10000px;
  top:10000px;
}
</style>

vue 简单版复制功能

原文:https://www.cnblogs.com/suntongxue/p/15080852.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!