sender.vue 488 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="sender-container">
  3. <button type="primary" @click="send">点击发送消息</button>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. methods: {
  9. send() {
  10. let num = parseInt(Math.random() * 10000)
  11. uni.$emit('cc', {
  12. msg: 'From uni.$emit -> ' + num
  13. })
  14. }
  15. }
  16. }
  17. </script>
  18. <style>
  19. .sender-container{
  20. padding: 20px;
  21. }
  22. </style>