| | |
| | | <template> |
| | | <div> |
| | | <div class="root"> |
| | | <div class="container-shell"> |
| | | <div id="container" ref="container" style="width:200px;height:200px"></div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <div id="container" ref="container" :style="{width,height}"></div> |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | |
| | | videoUrl: { |
| | | type: String, |
| | | required: true |
| | | }, |
| | | width: { |
| | | type: String, |
| | | default: '300px' |
| | | }, |
| | | height: { |
| | | type: String, |
| | | default: '200px' |
| | | } |
| | | }) |
| | | let jessibuca: null | Jessibuca = null |
| | |
| | | } |
| | | </script> |
| | | |
| | | <style scoped></style> |
| | | <style scoped lang="scss"></style> |