mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
fix: perfect copy componet
This commit is contained in:
parent
1a1ffcb9aa
commit
e1d440b45a
@ -148,6 +148,10 @@
|
|||||||
"searchPlaceholder": "Search icon",
|
"searchPlaceholder": "Search icon",
|
||||||
"clearIcon": "Clear icon",
|
"clearIcon": "Clear icon",
|
||||||
"selectorTitle": "Icon selection"
|
"selectorTitle": "Icon selection"
|
||||||
|
},
|
||||||
|
"copyText": {
|
||||||
|
"message": "Copied successfully",
|
||||||
|
"tooltip": "Copy"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -83,6 +83,10 @@
|
|||||||
"inputPlaceholder": "选择目标图标",
|
"inputPlaceholder": "选择目标图标",
|
||||||
"searchPlaceholder": "搜索图标",
|
"searchPlaceholder": "搜索图标",
|
||||||
"clearIcon": "清除图标"
|
"clearIcon": "清除图标"
|
||||||
|
},
|
||||||
|
"copyText":{
|
||||||
|
"tooltip":"复制",
|
||||||
|
"message":"复制成功"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"login": {
|
"login": {
|
||||||
|
@ -10,8 +10,13 @@ const modelValue = defineModel<string>('value')
|
|||||||
<n-ellipsis :style="{ 'max-width': props.maxLength || '12em' }">
|
<n-ellipsis :style="{ 'max-width': props.maxLength || '12em' }">
|
||||||
{{ modelValue }}
|
{{ modelValue }}
|
||||||
</n-ellipsis>
|
</n-ellipsis>
|
||||||
|
<n-tooltip trigger="hover">
|
||||||
|
<template #trigger>
|
||||||
<span v-copy="modelValue" class="cursor-pointer">
|
<span v-copy="modelValue" class="cursor-pointer">
|
||||||
<icon-park-outline-copy />
|
<icon-park-outline-copy />
|
||||||
</span>
|
</span>
|
||||||
|
</template>
|
||||||
|
{{ $t('components.copyText.tooltip') }}
|
||||||
|
</n-tooltip>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import type { App, Directive } from 'vue'
|
import type { App, Directive } from 'vue'
|
||||||
|
import { $t } from '@/utils'
|
||||||
|
|
||||||
interface CopyHTMLElement extends HTMLElement {
|
interface CopyHTMLElement extends HTMLElement {
|
||||||
_copyText: string
|
_copyText: string
|
||||||
@ -25,7 +26,7 @@ export function install(app: App) {
|
|||||||
if (!clipboardEnable())
|
if (!clipboardEnable())
|
||||||
return
|
return
|
||||||
copy(this._copyText)
|
copy(this._copyText)
|
||||||
window.$message.success('复制成功')
|
window.$message.success($t('components.copyText.message'))
|
||||||
}
|
}
|
||||||
|
|
||||||
function updataClipboard(el: CopyHTMLElement, text: string) {
|
function updataClipboard(el: CopyHTMLElement, text: string) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user