32 lines
852 B
Vue
32 lines
852 B
Vue
<script lang="ts" setup>
|
||
import { Page } from '@vben/common-ui';
|
||
|
||
import { Button } from 'ant-design-vue';
|
||
|
||
import { DocAlert } from '#/components/doc-alert';
|
||
</script>
|
||
|
||
<template>
|
||
<Page>
|
||
<DocAlert title="AI 写作助手" url="https://doc.iocoder.cn/ai/write/" />
|
||
<Button
|
||
danger
|
||
type="link"
|
||
target="_blank"
|
||
href="https://github.com/yudaocode/yudao-ui-admin-vue3"
|
||
>
|
||
该功能支持 Vue3 + element-plus 版本!
|
||
</Button>
|
||
<br />
|
||
<Button
|
||
type="link"
|
||
target="_blank"
|
||
href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/write/manager/index.vue"
|
||
>
|
||
可参考
|
||
https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/ai/write/manager/index.vue
|
||
代码,pull request 贡献给我们!
|
||
</Button>
|
||
</Page>
|
||
</template>
|