refactor: 重构及优化应用管理

This commit is contained in:
2024-11-17 22:05:00 +08:00
parent 0bd0ff5e21
commit 2b7c09966f
12 changed files with 238 additions and 240 deletions

View File

@@ -0,0 +1,28 @@
<template>
<a-space :size="[2]">
<a-typography-paragraph
:ellipsis="{
rows: 1,
showTooltip: true,
css: true,
}"
>
{{ content }}
</a-typography-paragraph>
<a-typography-paragraph copyable :copy-text="content" />
</a-space>
</template>
<script setup lang="ts">
defineOptions({ name: 'CellCopy' })
withDefaults(defineProps<Props>(), {
content: '',
})
interface Props {
content: string
}
</script>
<style scoped lang="scss"></style>