husq
2023-09-18 929e0a70374722c6005937dd58318c0806f9a289
src/components/Jessibuca/Jessibuca.vue
@@ -1,11 +1,5 @@
<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">
@@ -15,6 +9,14 @@
  videoUrl: {
    type: String,
    required: true
  },
  width: {
    type: String,
    default: '300px'
  },
  height: {
    type: String,
    default: '200px'
  }
})
let jessibuca: null | Jessibuca = null
@@ -171,4 +173,4 @@
}
</script>
<style scoped></style>
<style scoped lang="scss"></style>