mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
feat(components): add copy-text
This commit is contained in:
parent
0eaabd1547
commit
5651108ac2
31
src/components/custom/CopyText.vue
Normal file
31
src/components/custom/CopyText.vue
Normal file
@ -0,0 +1,31 @@
|
||||
<script setup lang="ts">
|
||||
const props = defineProps<{
|
||||
modelValue: string
|
||||
maxLength?: string
|
||||
}>()
|
||||
const emit = defineEmits(['update:modelValue'])
|
||||
|
||||
const text = useVModel(props, 'modelValue', emit)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="copy-wrap">
|
||||
<n-ellipsis :style="{ 'max-width': maxLength || '12em' }">
|
||||
{{ text }}
|
||||
</n-ellipsis>
|
||||
<span v-copy="text" class="copy_icon">
|
||||
<i-icon-park-outline-copy />
|
||||
</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.copy-wrap{
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap:0.5em;
|
||||
}
|
||||
.copy_icon{
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
@ -11,6 +11,8 @@ const text = ref('Hello v-copy')
|
||||
v-copy复制
|
||||
</n-button>
|
||||
</n-input-group>
|
||||
<n-h1> copy-text组件 使用</n-h1>
|
||||
<copy-text v-model="text" />
|
||||
</n-card>
|
||||
</template>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user