Skip to content

FollowersList

A Vue component.

File: src/components/dm/FollowersList.vue

Overview

Props

This component has no props.

Events

NameParametersDescription
conversationStartedstringNo description

Event Details

conversationStarted

No description available.

Parameters: string

Slots

This component has no slots.

Methods

This component exposes no public methods.

Usage Example

vue
<template>
  <FollowersList
    @conversationStarted="handleConversationStarted" />
</template>

<script setup lang="ts">
const handleConversationStarted = (data: string) => {
  // Handle conversationStarted event
}
</script>

File Location

src/components/dm/FollowersList.vue


This documentation was automatically generated from the component source code.

Released under the AGPL-3.0 License.