12345678910111213141516171819202122232425262728 |
- <template>
- <TRTCCloudUniPlugin-TXRemoteViewComponent :userId="userId"
- :viewId="viewId"></TRTCCloudUniPlugin-TXRemoteViewComponent>
- </template>
- <script>
- export default {
- name: 'TrtcRemoteView',
- props: {
- userId: {
- type: String,
- default: ''
- },
- viewId: {
- type: String,
- default: ''
- }
- },
- created() {
- console.log(this.userId, 'userId')
- console.log(this.viewId, 'viewId')
- }
- }
- </script>
- <style>
- </style>
|