This commit is contained in:
X1627315083@163.com
2026-02-10 15:36:48 +08:00
parent 39df67f2e6
commit e29f6a4de1
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue"; import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
import VersionDetail from './versionDetail.vue' import VersionDetail from './versionDetail.vue'
import ChatHistory from './chatHistory.vue' import ChatDetail from './chatDetail.vue'
//const props = defineProps({ //const props = defineProps({
//}) //})
const emit = defineEmits([ const emit = defineEmits([
@@ -14,7 +14,7 @@ const detailData = ref({
versionSketch:'Version 1 - Sketch', versionSketch:'Version 1 - Sketch',
versionSketchTime:'2023-08-01 10:00:00', versionSketchTime:'2023-08-01 10:00:00',
}, },
userChatHistory:{ userChatDetail:{
} }
@@ -35,10 +35,10 @@ defineExpose({})
></VersionDetail> ></VersionDetail>
</div> </div>
<div class="useInput"> <div class="useInput">
<ChatHistory type="user"></ChatHistory> <ChatDetail type="user"></ChatDetail>
</div> </div>
<div class="systemInput"> <div class="systemInput">
<ChatHistory type="robot"></ChatHistory> <ChatDetail type="robot"></ChatDetail>
</div> </div>
</div> </div>
</template> </template>