|
@@ -0,0 +1,27 @@
|
|
|
+<template>
|
|
|
+ <uni-popup ref="daoTipPopup" type="bottom">
|
|
|
+ <view class="game-popup-box">
|
|
|
+
|
|
|
+ <view style="background-color: #fff;">123123</view>
|
|
|
+
|
|
|
+ </view>
|
|
|
+ </uni-popup>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+ import {ref} from "vue";
|
|
|
+ const daoTipPopup = ref(null);
|
|
|
+ function handleShow() {
|
|
|
+ daoTipPopup.value.open();
|
|
|
+ }
|
|
|
+ function handleClose() {
|
|
|
+ daoTipPopup.value.close();
|
|
|
+ }
|
|
|
+
|
|
|
+ defineExpose({
|
|
|
+ handleShow
|
|
|
+ })
|
|
|
+</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+</style>
|