1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <script setup lang="ts">
| import type { UserCouponProperty } from './config';
|
| import { Image } from 'ant-design-vue';
|
| /** 用户卡券 */
| defineOptions({ name: 'UserCoupon' });
| // 定义属性
| defineProps<{ property: UserCouponProperty }>();
| </script>
| <template>
| <Image
| src="https://shopro.sheepjs.com/admin/static/images/shop/decorate/couponCardStyle.png"
| :preview="false"
| />
| </template>
|
|