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 1078f93 commit fbb5432Copy full SHA for fbb5432
src/ChatWindow/Message/Message.vue
@@ -9,7 +9,17 @@
9
</div>
10
11
<div v-if="message.system" class="vac-card-info vac-card-system">
12
- {{ message.content }}
+ <format-message
13
+ :content="message.content"
14
+ :users="roomUsers"
15
+ :text-formatting="textFormatting"
16
+ :link-options="linkOptions"
17
+ @open-user-tag="openUserTag"
18
+ >
19
+ <template v-for="(i, name) in $scopedSlots" #[name]="data">
20
+ <slot :name="name" v-bind="data" />
21
+ </template>
22
+ </format-message>
23
24
25
<div
0 commit comments