27 lines
584 B
Vue
27 lines
584 B
Vue
<script setup lang="ts">
|
|
// 智能体功能 - 预留
|
|
</script>
|
|
|
|
<template>
|
|
<div class="image-generation-page">
|
|
<el-empty description="智能体功能开发中,敬请期待">
|
|
<template #image>
|
|
<el-icon style="font-size: 80px; color: var(--el-color-primary);">
|
|
<i-ep-picture />
|
|
</el-icon>
|
|
</template>
|
|
</el-empty>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.image-generation-page {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--el-bg-color);
|
|
}
|
|
</style>
|