index.vue 501 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <u-popup :show="show" @close="close" @open="open" :mode="mode" :round="round">
  4. <view class="topBar" style="">
  5. 按钮等<button @click="close">关闭</button>
  6. </view>
  7. <slot name="content"></slot>
  8. </u-popup>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. props: ['show', 'mode', 'round'],
  14. methods: {
  15. close() {
  16. this.$emit('close')
  17. },
  18. open() {
  19. this.$emit('open')
  20. }
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. @import "./index.scss";
  26. </style>