| 123456789101112131415161718192021222324252627282930 | <template>	<uni-popup ref="eggPopup" :animation="false" :is-mask-click="false"	 mask-background-color="rgba(255, 255, 255, 0.6);">	 <view class="study-egg-dialog">			<view class="egg-content-box">				<view class="egg-title"></view>				<view class="egg-img"></view>				<view class="egg-btn" @click="eggBtn"></view>			</view>	 </view>	</uni-popup></template><script setup>	import { ref } from 'vue';	 const $emit = defineEmits(['eggBtn'])	const eggPopup = ref(null); // 索引	// 打开弹窗	function eggShow() {		eggPopup.value.open();	}	// 开启提分之旅按钮	function eggBtn(){		eggPopup.value.close();		$emit('eggBtn')	}	defineExpose({			eggShow		})</script>
 |