CustomPopup.vue 482 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <uv-popup ref="popup" mode="center" bgColor="none" class="popupCenter" style="width: 300rpx; ">
  3. <view>
  4. <slot></slot>
  5. </view>
  6. </uv-popup>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'CustomPopup',
  11. methods: {
  12. open() {
  13. this.$refs.popup.open();
  14. },
  15. close() {
  16. this.$refs.popup.close();
  17. }
  18. }
  19. }
  20. </script>
  21. <style scoped>
  22. /* 可以在这里添加样式 */
  23. .popupCenter
  24. {
  25. background-color: #fff;
  26. width: 600rpx;
  27. }
  28. </style>