## Copy 復制到剪貼板
復制文本到剪貼板

### 代碼示例
```javascript
<template>
<div class="page">
<cvu-row :gutter="16">
<cvu-col span="10"><Input v-model="copyText" placeholder="請輸入文本內容" clearable></Input></cvu-col>
<cvu-col span="5"><cvu-button type="primary" @on-click="handleClick">復制到剪貼板</cvu-button></cvu-col>
</cvu-row>
</div>
</template>
<script>
export default {
data() {
return {
copyText: ''
}
},
methods: {
handleClick() {
if(!this.copyText) {
this.$Message.warning('請輸入文本內容')
return
}
this.$cvuCopy({
text: this.copyText
}).then(() => {
this.$Message.success('復制成功')
})
}
}
}
</script>
<style lang="scss" scoped>
.page{
height: 100%;
padding: 15px;
box-sizing: border-box;
h3{
margin: 10px 0;
}
/deep/.ivu-input{
height: 40px;
line-height: 40px;
}
}
</style>
```
### methods
>[success] `this.$cvuCopy(options)`
- options:
- text:文本內容
- 介紹
- 安裝
- 快速上手
- 組件
- 基礎
- Button 按鈕
- ButtonGroup 按鈕組
- 布局
- Card 卡片
- Col 列
- Collapse 折疊面板
- Divider 分割線
- Empty 空數據
- Row 行
- 導航
- Paginator 分頁
- PaginatorMini 分頁
- Tab 標簽頁
- 表單
- Cascader 級聯選擇
- PasswordStrength 密碼強度
- Print 局部打印
- Table 表格
- Upload 文件上傳
- 視圖
- Calendar 日歷
- Drawer 抽屜
- Loading 加載
- Message 全局提示
- Modal 對話框
- Notification 通知菜單
- Poptip 氣泡提示
- Preview 圖片預覽
- PreviewPdf pdf文件預覽
- Tooltip 文字提示
- Tree 樹形控件
- 方法
- Copy 復制到剪貼板
- DescNotice 桌面消息通知
- Html2Pdf 導出pdf
- Storage 定時存儲
- 其他
- BackTop 返回頂部
- NumberScroll 數字動畫
- NumberZero 數字前補零
- Spin 局部加載
- Tcplayer 播放器