daoTipDialog.vue 463 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <uni-popup ref="daoTipPopup" type="bottom">
  3. <view class="game-popup-box">
  4. <view style="background-color: #fff;">123123</view>
  5. </view>
  6. </uni-popup>
  7. </template>
  8. <script setup>
  9. import {ref} from "vue";
  10. const daoTipPopup = ref(null);
  11. function handleShow() {
  12. daoTipPopup.value.open();
  13. }
  14. function handleClose() {
  15. daoTipPopup.value.close();
  16. }
  17. defineExpose({
  18. handleShow
  19. })
  20. </script>
  21. <style>
  22. </style>