16 lines
390 B
Vue
16 lines
390 B
Vue
<template>
|
|
<couponPopupVue></couponPopupVue>
|
|
<!-- <timeSelectVue></timeSelectVue> -->
|
|
<!-- <tipVue></tipVue> -->
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import timeSelectVue from '../workshop/component/timeSelect.vue';
|
|
import tipVue from '../workshop/component/tip.vue';
|
|
import couponPopupVue from '../coupon/component/couponPopup.vue';
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|