Files
dvcp_v2_webapp/components/AiAssist.vue
2024-01-08 16:36:34 +08:00

21 lines
336 B
Vue

<script>
export default {
name: "AiAssist"
}
</script>
<template>
<section class="AiAssist">
<img src="https://cdn.cunwuyun.cn/dvcp/dv/aiIcon.png"/>
<div class="avatar-text" v-text="'全局AI助手'"/>
</section>
</template>
<style scoped lang="scss">
.AiAssist {
.avatar-text {
text-align: center;
}
}
</style>