平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
500 B

  1. <template>
  2. <view class="radioPopup">
  3. <u-popup :show="show" @close="close" @open="open">
  4. <view>
  5. <text>出淤泥而不染,濯清涟而不妖</text>
  6. </view>
  7. </u-popup>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'radioPopup',
  13. data() {
  14. return {
  15. show: false
  16. }
  17. },
  18. props: {
  19. },
  20. methods: {
  21. open() {
  22. // console.log('open');
  23. },
  24. close() {
  25. this.show = false
  26. // console.log('close');
  27. }
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. </style>