仿ChatGPT3.5的问答系统
【代码】仿ChatGPT3.5的问答系统。
·
Header.vue
<template>
<div class="head">
<div @click="headerShow" class="left">
<span></span>
<span></span>
<span></span>
</div>
<div class="cont">问答系统</div>
<div class="right">
<!-- <el-icon :size="22"><FullScreen /></el-icon> -->
</div>
</div>
</template>
<script setup>
import emitter from "../utils/bus"
const headerShow = ()=>{
emitter.emit('childData')
}
</script>
<style lang="less" scoped>
.head{
height: 36px;
display: flex;
justify-content: space-between;
align-items: center;
background: rgba(216, 216, 216, 0.8);
padding: 0 10px;
.cont{
color: rgb(160, 162, 162);
}
.left{
cursor: pointer;
&>span{
display: block;
width: 25px;
height: 1px;
border-radius: 3px;
&:nth-child(1){
border-bottom: 3px solid greenyellow;
margin-bottom: 3px;
}
&:nth-child(2){
border-bottom: 3px solid orange;
margin-bottom: 3px;
}
&:last-child{
border-bottom: 3px solid red;
}
}
}
.right{
height: right;
display: flex;
justify-content: center;
align-items: center;
}
}
</style>

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐
所有评论(0)