add 118, 微雨云

This commit is contained in:
QAIU
2024-10-26 16:04:49 +08:00
parent 1c673f2b46
commit 05039ece51
10 changed files with 214 additions and 8 deletions

View File

@@ -312,13 +312,19 @@ export default {
this.$message.error(response.data.msg)
}
});
}
},
async getPaste() {
const text = await navigator.clipboard.readText();
console.log('获取到的文本内容是:', text)
},
},
mounted() {
this.getLinkInfo = `${this.baseAPI}/v2/linkInfo`
this.getLink = `${this.baseAPI}/json/parser`
this.getLink = `${this.baseAPI}/json/parser`
this.getInfo()
}
this.getPaste()
},
}
</script>