18 lines
763 B
Vue
18 lines
763 B
Vue
<script lang="ts" setup>
|
||
import { DocAlert } from '@/components/DocAlert'
|
||
</script>
|
||
|
||
<template>
|
||
<div>
|
||
<doc-alert title="【营销】限时折扣" url="https://doc.iocoder.cn/mall/promotion-discount/" />
|
||
|
||
<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/mall/promotion/discountActivity/index.vue">
|
||
可参考 https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mall/promotion/discountActivity/index.vue 代码,pull request 贡献给我们!
|
||
</a-button>
|
||
</div>
|
||
</template>
|