feat: agent聊天样式

This commit is contained in:
2026-02-10 13:05:24 +08:00
parent 40cf156e2e
commit 8feda12724
18 changed files with 1392 additions and 1053 deletions

View File

@@ -0,0 +1,30 @@
<template>
<div class="agent-wrapper flex space-between">
<Agent :title="agentTitle" />
<div class="preview-wrapper">preview</div>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import Agent from './components/Agent.vue'
const agentTitle = ref('Retro Sofa Sketch')
</script>
<style lang="less" scoped>
.agent-wrapper {
width: 100%;
height: 100%;
border-top: 0.1rem solid #c9c9c9;
padding: 8rem 2.3rem 6rem 2.8rem;
.c-svg {
width: initial;
}
.preview-wrapper {
width: 91.2rem;
background-color: #f5f5f5;
}
}
</style>