22 lines
422 B
Vue
22 lines
422 B
Vue
<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> |