diff --git a/src/components/Tools/ASCIIWordPic/ASCIIWordPic.vue b/src/components/Tools/ASCIIWordPic/ASCIIWordPic.vue index 9566d94..74f030e 100644 --- a/src/components/Tools/ASCIIWordPic/ASCIIWordPic.vue +++ b/src/components/Tools/ASCIIWordPic/ASCIIWordPic.vue @@ -122,11 +122,6 @@ const clear = () => { contentRes.value = '' } -//copy -const copyRes = async (resStr: string) => { - copy(resStr) -} - onMounted(() => { gen() }) diff --git a/src/components/Tools/HtmlEntity/HtmlEntity.vue b/src/components/Tools/HtmlEntity/HtmlEntity.vue index 810fb10..71c090d 100644 --- a/src/components/Tools/HtmlEntity/HtmlEntity.vue +++ b/src/components/Tools/HtmlEntity/HtmlEntity.vue @@ -26,10 +26,6 @@ const clear = () => { cleanContent.value = '' } -//copy -const copyRes = async (resStr: string) => { - copy(resStr) -} onMounted(() => { })