diff options
| author | Henry Jameson <me@hjkos.com> | 2021-04-07 22:42:34 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-04-07 22:42:34 +0300 |
| commit | 61dcdbf99293de8c8b813ccec2833b190d3f97b2 (patch) | |
| tree | f3c962a2fd8a290e5687135cdf16ec8a794a4076 /src/components/chat_list | |
| parent | 8b96ea93776fd1eb462a7c54822d4f8ad6a9e776 (diff) | |
migrate to v-slot
Diffstat (limited to 'src/components/chat_list')
| -rw-r--r-- | src/components/chat_list/chat_list.vue | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/chat_list/chat_list.vue b/src/components/chat_list/chat_list.vue index e23eec13..f98b7ed2 100644 --- a/src/components/chat_list/chat_list.vue +++ b/src/components/chat_list/chat_list.vue @@ -23,10 +23,7 @@ class="timeline" > <List :items="sortedChatList"> - <template - slot="item" - slot-scope="{item}" - > + <template v-slot:item="{item}"> <ChatListItem :key="item.id" :compact="false" |
