forked from FoundKeyGang/FoundKey
perf: use v-once in emoji picker window
This commit is contained in:
parent
7b33ee807e
commit
62ff65fbf4
1 changed files with 2 additions and 2 deletions
|
@ -59,11 +59,11 @@
|
|||
</div>
|
||||
</section>
|
||||
</div>
|
||||
<div>
|
||||
<div v-once>
|
||||
<header class="_panel">{{ i18n.ts.customEmojis }}</header>
|
||||
<XSection v-for="category in customEmojiCategories" :key="'custom:' + category" :initial-shown="false" :emojis="customEmojis.filter(e => e.category === category).map(e => ':' + e.name + ':')" @chosen="chosen">{{ category || i18n.ts.other }}</XSection>
|
||||
</div>
|
||||
<div>
|
||||
<div v-once>
|
||||
<header class="_panel">{{ i18n.ts.emoji }}</header>
|
||||
<XSection v-for="category in categories" :key="category" :emojis="emojilist.filter(e => e.category === category).map(e => e.char)" @chosen="chosen">{{ category }}</XSection>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue