| 1234567891011121314151617181920 |
- <template>
- <div class="message-detail">
- <knowledgeLib :kb_id="id"></knowledgeLib>
- </div>
- </template>
- <script setup>
- import knowledgeLib from './knowledgeLib/index.vue';
- const props = defineProps({
- id: {
- type: String,
- required: true
- }
- });
- </script>
- <style scoped lang="css">
- .message-detail {
- height: calc(100% - 40px);
- }
- </style>
|