2025-04-21 19:05:00 +08:00
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
|
import { Page } from '@vben/common-ui';
|
2025-04-23 12:56:35 +08:00
|
|
|
|
|
|
|
|
|
|
import { Button } from 'ant-design-vue';
|
2025-04-21 19:05:00 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
<Page>
|
2025-04-23 12:56:35 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
danger
|
|
|
|
|
|
type="link"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
href="https://github.com/yudaocode/yudao-ui-admin-vue3"
|
|
|
|
|
|
>
|
2025-04-21 19:05:00 +08:00
|
|
|
|
该功能支持 Vue3 + element-plus 版本!
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<br />
|
2025-04-23 12:56:35 +08:00
|
|
|
|
<Button
|
|
|
|
|
|
type="link"
|
|
|
|
|
|
target="_blank"
|
|
|
|
|
|
href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processInstance/create/index"
|
|
|
|
|
|
>
|
|
|
|
|
|
可参考
|
|
|
|
|
|
https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/bpm/processInstance/create/index
|
|
|
|
|
|
代码,pull request 贡献给我们!
|
2025-04-21 19:05:00 +08:00
|
|
|
|
</Button>
|
|
|
|
|
|
</Page>
|
2025-04-23 12:56:35 +08:00
|
|
|
|
</template>
|