ui_migration bugfix(component) fix ministream add prop id and visibility stream add and remove

This commit is contained in:
Antonio Anaya 2026-06-03 06:20:29 -06:00
parent 8aaddf6fb1
commit 22444af143
10 changed files with 94 additions and 15 deletions

View file

@ -1,7 +1,7 @@
<template>
<div>
<slot></slot>
<miniStreamDisplay class="mini-preview" />
<miniStreamDisplay class="mini-preview" :stream-id="setStreamId" />
<slot name="below-stream"></slot>
</div>
</template>
@ -15,6 +15,13 @@ export default {
components: {
miniStreamDisplay,
},
data() {
return {
// This adds the parent name as value for prop streamId
setStreamId: this.$options.name,
};
},
};
</script>