Compare commits

..

No commits in common. '47219499fd04fe27e0ffe81a3122c4ba67edaca0' and '72e1d51c6220b0ebe75a05fe10fac86ad36b89a9' have entirely different histories.

@ -340,21 +340,16 @@
: '' : ''
" :goto-user-card="true" /> " :goto-user-card="true" />
<!-- props.msg.text --> <!-- props.msg.text -->
<div> <div class="msg-content">
<div class="msg-name 8" v-if="!props.msg.isSelf"> <div class="msg-bg"
{{ appellation }} <span v-if="subtitle" style="color: orange;">{{ subtitle }}</span> :class="[!props.msg.isSelf ? 'msg-bg-in' : 'msg-bg-out']"
</div> :style="{
<div class="msg-contents"> fontSize: 16 + 'px',
<div class="msg-bg" 'background-color': !props.msg.isSelf ? '#ffffff' : '#d6e5f6',
:class="[!props.msg.isSelf ? 'msg-bg-in' : 'msg-bg-out']" 'margin-left': !props.msg.isSelf ? '8px' : '0px'
:style="{ }"
fontSize: 16 + 'px', >
'background-color': !props.msg.isSelf ? '#ffffff' : '#d6e5f6', <span class="msg-text">{{ props.msg.text }}</span>
'margin-left': !props.msg.isSelf ? '8px' : '0px'
}"
>
<span class="msg-text">{{ props.msg.text }}</span>
</div>
</div> </div>
</div> </div>
</div> </div>

Loading…
Cancel
Save