企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` import avatar from '@/assets/img/avatar.gif' ``` ``` <img class="user-avatar" :src="avatar"> ``` ``` img_src: '/static/card/', ``` ``` <el-row :gutter="110"> <el-col :span="6" v-for="(o, index) in 8" :key="o" > <el-card :body-style="{ padding: '20px' }" shadow="hover"> <img :src="img_src+'1'+'-'+o+'.png'" class="image"> <div style="padding: 14px;"> <span style="font-size: 13px;">{{img_text[index]}}</span> <div class="bottom clearfix"> <el-button type="text" class="button">设置默认</el-button> </div> </div> </el-card> </el-col> </el-row> ```