hModal.vue 366 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view>
  3. <u-modal v-model="is_show" :content="content"></u-modal>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. props:{
  9. content: {
  10. default(){
  11. return ''
  12. }
  13. }
  14. },
  15. data() {
  16. return {
  17. is_show: false,
  18. }
  19. },
  20. methods: {
  21. show() {
  22. this.is_show = true;
  23. },
  24. hide() {
  25. this.is_show = false
  26. }
  27. }
  28. }
  29. </script>