Skip to content

InviteManagement

A Vue component.

File: src/components/settings/server/InviteManagement.vue

Overview

Props

NameTypeDefaultRequiredDescription
serverIdstringundefinedNo description

Props Details

serverId

No description available.

  • Type: string
  • Required: Yes
  • Default: undefined

Events

NameParametersDescription
create-inviteunknownNo description

Event Details

create-invite

No description available.

Parameters: unknown

Slots

This component has no slots.

Methods

This component exposes no public methods.

Usage Example

vue
<template>
  <InviteManagement
    :serverId=""example""
    @create-invite="handleCreateInvite" />
</template>

<script setup lang="ts">
const handleCreateInvite = (data: unknown) => {
  // Handle create-invite event
}
</script>

File Location

src/components/settings/server/InviteManagement.vue


This documentation was automatically generated from the component source code.

Released under the AGPL-3.0 License.