您好,登錄后才能下訂單哦!
這篇文章主要介紹Vue怎么實現剪貼板復制功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
一. 安裝插件
第一種直接npm安裝: npm install clipboard --save
第二種: <script src="js/clipboard.min.js"></script>
(下載地址:https://clipboardjs.com/)
二. 全局注入(main.js)
import VueClipboard from 'vue-clipboard2' Vue.use(VueClipboard)
三. 封裝方法方便多次使用
新建一個index.js文件里面存放項目會多次使用的方法
export default{ install(Vue,opstion){ //把方法寫在vue原型方便調用 Vue.prototype.copy = function (value) { this.$copyText( `${value}` ).then( res => { //這是element的Message 消息提示組件 this.$message({ message: "復制成功", type: "success" }); }, err => { this.$message.error("復制失敗"); } ); }, } }
四. 在需要復制的頁面中調用copy方法
<template> <el-tooltip class="item" effect="dark" content="復制" placement="bottom"> <i class="icon copy iconfont" @click.stop="copyCode()"></i> </el-tooltip> </template> <script> //直接調用copy方法就可以了 copyCode(scope) { //把需要復制的內容傳value this.copy(scope.row.date); }, </script>
以上是“Vue怎么實現剪貼板復制功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。