增加添加券兑换码页面
This commit is contained in:
22
pageMarket/components/coupon-list.vue
Normal file
22
pageMarket/components/coupon-list.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<view>
|
||||
|
||||
|
||||
<chooseCoupon v-model="chooseCouponData.couponId" :show="chooseCouponData.show"></chooseCoupon>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { reactive } from "vue";
|
||||
import chooseCoupon from "./choose-coupon.vue";
|
||||
const chooseCouponData=reactive({
|
||||
couponId:'',
|
||||
show:true
|
||||
})
|
||||
const modelValue = defineModel({
|
||||
type: Array,
|
||||
default: () => [],
|
||||
});
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
</style>
|
||||
Reference in New Issue
Block a user