18 lines
706 B
Vue
18 lines
706 B
Vue
<script lang="ts" setup>
|
||
import { DocAlert } from '@/components/DocAlert'
|
||
</script>
|
||
|
||
<template>
|
||
<div>
|
||
<DocAlert title="AI 绘画创作" url="https://doc.iocoder.cn/ai/image/" />
|
||
|
||
<a-button danger type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3">
|
||
该功能支持 Vue3 + element-plus 版本!
|
||
</a-button>
|
||
<br>
|
||
<a-button type="link" target="_blank" href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/image/square/index.vue">
|
||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/image/square/index.vue 代码,pull request 贡献给我们!
|
||
</a-button>
|
||
</div>
|
||
</template>
|