Skip to content

Commit

Permalink
Merge pull request #299 from serebrov/298-demo-app-and-tests
Browse files Browse the repository at this point in the history
[#298] Demo app and test
  • Loading branch information
serebrov authored Sep 21, 2024
2 parents 1053052 + 14bdc85 commit 605cfbc
Show file tree
Hide file tree
Showing 4 changed files with 32,705 additions and 6 deletions.
25 changes: 19 additions & 6 deletions docs/bundle.js

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions docs/exampleMain.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@
</template>
</div>

<div class="row">
Infinite scroll
<button @click="infiniteScroll = !infiniteScroll">
{{ infiniteScroll ? 'on' : 'off' }} (click to toggle)
</button>
</div>

<div v-if="isVisible" class="row">
<picker
:data="index"
Expand All @@ -28,6 +35,7 @@
:emojiTooltip="true"
:title="title"
:emojiSize="30"
:infiniteScroll="infiniteScroll"
@select="showEmoji"
/>
</div>
Expand Down Expand Up @@ -65,6 +73,7 @@ export default {
emoji: 'point_up',
title: 'Pick your emoji…',
isVisible: true,
infiniteScroll: true,
emojisOutput: '',
selectedEmojis: [],
}
Expand Down
Loading

0 comments on commit 605cfbc

Please sign in to comment.