123456789101112131415161718192021222324252627 |
- <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>
|