Skip to content

GifPickerContent

A Vue component.

File: src/components/GifPickerContent.vue

Overview

Props

NameTypeDefaultRequiredDescription
showFavoritesbooleanundefinedNo description

Props Details

showFavorites

No description available.

  • Type: boolean
  • Required: Yes
  • Default: undefined

Events

NameParametersDescription
update:showFavoritesbooleanNo description
sendGifGifNo description

Event Details

update:showFavorites

No description available.

Parameters: boolean

sendGif

No description available.

Parameters: Gif

Slots

This component has no slots.

Methods

This component exposes no public methods.

Usage Example

vue
<template>
  <GifPickerContent
    :showFavorites="true"
    @update:showFavorites="handleUpdate:showFavorites"
    @sendGif="handleSendGif" />
</template>

<script setup lang="ts">
const handleUpdate:showFavorites = (data: boolean) => {
  // Handle update:showFavorites event
}

const handleSendGif = (data: Gif) => {
  // Handle sendGif event
}
</script>

File Location

src/components/GifPickerContent.vue


This documentation was automatically generated from the component source code.

Released under the AGPL-3.0 License.