| 1234567891011121314151617181920212223 |
- <template>
- <TRTCCloudUniPlugin-TXRemoteViewComponent :userId="userId" :viewId="viewId"></TRTCCloudUniPlugin-TXRemoteViewComponent>
- </template>
- <script>
- export default {
- name: 'TrtcRemoteView',
- props: {
- userId: {
- type: String,
- default: ''
- },
- viewId: {
- type: String,
- default: ''
- }
- },
- }
- </script>
- <style>
- </style>
|