husq
2023-09-18 1ef360a14efab8a1defa1dfdc13bb5af64a9d621
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>