mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-01-04 06:34:44 +08:00
fix(hash-text): correct copy message
This commit is contained in:
parent
4ca5fce911
commit
bab92ef84f
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ const clearText = ref('Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|||
const algo = ref<keyof typeof algos>('SHA256')
|
||||
const hashedText = computed(() => algos[algo.value](clearText.value).toString())
|
||||
|
||||
const { copy } = useCopy({ source: hashedText, text: 'Token copied to the clipboard' })
|
||||
const { copy } = useCopy({ source: hashedText, text: 'Hash copied to the clipboard' })
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
|
Loading…
Reference in a new issue