12345678910111213141516171819202122 |
- <template>
- <TRTCCloudUniPlugin-TXLocalViewComponent :viewId="viewId"></TRTCCloudUniPlugin-TXLocalViewComponent>
- </template>
- <script>
- export default {
- name: 'TrtcLocalView',
- props: {
- viewId: {
- type: String,
- default: ''
- }
- },
- created() {
- console.log(this.viewId, '1111111')
- }
- }
- </script>
- <style>
- </style>
|