fix
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user