Files
2026-03-10 14:22:40 +08:00

65 lines
1.8 KiB
Vue

<template>
<div class="code-preview">
<el-dialog v-model="show" width="900px" title="代码预览">
<el-tabs v-model="activeTab">
<el-tab-pane
v-for="(item, index) in code"
:label="item.name"
:name="`index${index}`"
:key="index"
>
<div class="flex" style="height: 50vh">
<el-scrollbar class="flex-1">
<highlightjs autodetect :code="item.content" />
</el-scrollbar>
<div>
<el-button @click="handleCopy(item.content)" type="primary" link>
<template #icon>
<icon name="el-icon-CopyDocument" />
</template>
复制
</el-button>
</div>
</div>
</el-tab-pane>
</el-tabs>
</el-dialog>
</div>
</template>
<script lang="ts" setup>
import useClipboard from 'vue-clipboard3'
import feedback from '@/utils/feedback'
const props = defineProps<{
modelValue: boolean
code: any[]
}>()
const emit = defineEmits<{
(event: 'update:modelValue', value: boolean): void
}>()
const { toClipboard } = useClipboard()
const activeTab = ref('index0')
const handleCopy = async (text: string) => {
try {
await toClipboard(text)
feedback.msgSuccess('复制成功')
} catch (e) {
feedback.msgError('复制失败')
}
}
const show = computed<boolean>({
get() {
return props.modelValue
},
set(value) {
emit('update:modelValue', value)
}
})
</script>