After carefully reviewing the documentation, I am puzzled about how to modify a class.
My component's data is structured as follows:
props: [
'm_c_id',
'recipient_id',
'sender_id',
'userId'
],
If sender_id == userId
, I wish to display the following in my template:
<div class="msg-from-me">
<p>Hello</p>
</div>
Alternatively, if recipient_id == userId
, I intend to display the following:
<div class="msg-from-them">
<p>Hello</p>
</div>