Skip to content

AllThreadsModal

A Vue component.

File: src/components/threads/AllThreadsModal.vue

Overview

Props

NameTypeDefaultRequiredDescription
isVisiblebooleanundefinedNo description
channelIdstringundefinedNo description
serverIdstringundefinedNo description

Props Details

isVisible

No description available.

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

channelId

No description available.

  • Type: string
  • Required: No
  • Default: undefined

serverId

No description available.

  • Type: string
  • Required: No
  • Default: undefined

Events

NameParametersDescription
closeunknownNo description
select-threadThreadWithDetailsNo description

Event Details

close

No description available.

Parameters: unknown

select-thread

No description available.

Parameters: ThreadWithDetails

Slots

This component has no slots.

Methods

This component exposes no public methods.

Usage Example

vue
<template>
  <AllThreadsModal
    :isVisible="true"
    @close="handleClose"
    @select-thread="handleSelectThread" />
</template>

<script setup lang="ts">
const handleClose = (data: unknown) => {
  // Handle close event
}

const handleSelectThread = (data: ThreadWithDetails) => {
  // Handle select-thread event
}
</script>

File Location

src/components/threads/AllThreadsModal.vue


This documentation was automatically generated from the component source code.

Released under the AGPL-3.0 License.