TrtcRemoteView.nvue 446 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <TRTCCloudUniPlugin-TXRemoteViewComponent :userId="userId"
  3. :viewId="viewId"></TRTCCloudUniPlugin-TXRemoteViewComponent>
  4. </template>
  5. <script>
  6. export default {
  7. name: 'TrtcRemoteView',
  8. props: {
  9. userId: {
  10. type: String,
  11. default: ''
  12. },
  13. viewId: {
  14. type: String,
  15. default: ''
  16. }
  17. },
  18. created() {
  19. console.log(this.userId, 'userId')
  20. console.log(this.viewId, 'viewId')
  21. }
  22. }
  23. </script>
  24. <style>
  25. </style>