Files
qhmes/jeecgboot-vue3/src/views/dashboard/ai/index.vue
2026-04-03 09:56:14 +08:00

25 lines
380 B
Vue

<template>
<div class="wrap">
<div class="content">
<AiChat></AiChat>
</div>
</div>
</template>
<script setup>
import AiChat from '/@/views/super/airag/aiapp/chat/AiChat.vue';
</script>
<style lang="less" scoped>
.wrap {
height: 100%;
width: 100%;
.content {
background: #fff;
width: 100%;
height: 100%;
}
}
</style>