feat(project): 增加剪贴板复制功能

This commit is contained in:
Coffee-crocodile 2022-10-12 16:32:01 +08:00
parent 09579837c9
commit 68ffcec54f
2 changed files with 43 additions and 0 deletions

View File

@ -214,6 +214,15 @@ const userRoutes = [
},
],
},
{
name: 'plugin_clipboard',
path: '/plugin/clipboard',
meta: {
title: '剪贴板',
requiresAuth: true,
icon: 'icon-park-outline:clipboard',
},
},
],
},
{

View File

@ -0,0 +1,34 @@
<template>
<n-card>
<n-input-group>
<n-input v-model:value="text" />
<n-button type="primary" @click="handleCopy">复制</n-button>
</n-input-group>
</n-card>
</template>
<script setup lang="ts">
import { ref } from 'vue';
const text = ref('Hello Clipboard');
function handleCopy() {
if (!navigator.clipboard) {
window.$message?.error('当前浏览器不支持复制!');
}
if (!text.value) {
window.$message?.error('请输入要复制的内容');
return;
}
navigator.clipboard.writeText(text.value).then(
(res) => {
window.$message?.success(`复制成功:${text.value}`);
},
(err) => {
window.$message?.error('复制失败');
},
);
}
</script>
<style scoped></style>