TrtcRemoteView.nvue 351 B

1234567891011121314151617181920212223
  1. <template>
  2. <TRTCCloudUniPlugin-TXRemoteViewComponent :userId="userId" :viewId="viewId"></TRTCCloudUniPlugin-TXRemoteViewComponent>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'TrtcRemoteView',
  7. props: {
  8. userId: {
  9. type: String,
  10. default: ''
  11. },
  12. viewId: {
  13. type: String,
  14. default: ''
  15. }
  16. },
  17. }
  18. </script>
  19. <style>
  20. </style>