diff --git a/app/pages/LiveRoom/index.client.vue b/app/pages/LiveRoom/index.client.vue index 1607e58..0d8ea8b 100644 --- a/app/pages/LiveRoom/index.client.vue +++ b/app/pages/LiveRoom/index.client.vue @@ -70,6 +70,20 @@ onBeforeUnmount(() => { const goPay = () => { show.value = true } +const fullLive1 = ref(false) + +watch(()=>{ + return props.fullLive +}, (newVal) => { + console.log('newVal',newVal) + if (newVal) { + setTimeout(() => { + fullLive1.value = true + }, 400) + }else { + fullLive1.value = false + } +})