Skip to content

Copy 复制组件

平台差异说明

App(vue)App(nvue)H5微信小程序

使用场景

  • 点击页面元素复制文字到剪切板

基本使用

  • 通过content设置要复制的文字内容
  • 通过alertStyle设置提示样式
html
<template>
  <view>
    <su-copy content="uview-plus is great !">
      <text>点击复制</text>
    </su-copy>
    <su-copy content="uview-plus is great !">
      <su-button type="primary">点击复制</su-button>
    </su-copy>
  </view>
</template>

示例源码

点击可以查看 右侧演示页面的源码

API

Props

参数说明类型默认值可选值
content待复制文字内容String--
alertStyle提示样式Stringtoastmodal
notice提示消息String复制成功-
text显示的文本String复制-

Events

事件名说明回调参数
success复制成功----

Released under the MIT License.

Released under the MIT License.