赞
踩
- <template>
- <view>
- <button @click="copyText">复制文本</button>
- </view>
- </template>
-
- <script>
- export default {
- methods: {
- copyText() {
- const text = '要复制的文本内容';
- uni.setClipboardData({
- data: text,
- success() {
- uni.showToast({
- title: '复制成功',
- icon: 'success'
- });
- }
- });
- }
- }
- };
- </script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。