We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 436187a commit 9e011efCopy full SHA for 9e011ef
src/ChatWindow/Message/Message.vue
@@ -100,6 +100,17 @@
100
<video width="100%" height="100%" controls>
101
<source :src="message.file.url" />
102
</video>
103
+ <format-message
104
+ :content="message.content"
105
+ :users="roomUsers"
106
+ :text-formatting="textFormatting"
107
+ :link-options="linkOptions"
108
+ @open-user-tag="openUserTag"
109
+ >
110
+ <template v-for="(i, name) in $scopedSlots" #[name]="data">
111
+ <slot :name="name" v-bind="data" />
112
+ </template>
113
+ </format-message>
114
</div>
115
116
<audio-player
0 commit comments