Skip to content

NoServersSplash

A Vue component.

File: src/components/NoServersSplash.vue

Overview

Props

This component has no props.

Events

NameParametersDescription
showPublicServersunknownNo description

Event Details

showPublicServers

No description available.

Parameters: unknown

Slots

This component has no slots.

Methods

This component exposes no public methods.

Usage Example

vue
<template>
  <NoServersSplash
    @showPublicServers="handleShowPublicServers" />
</template>

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

File Location

src/components/NoServersSplash.vue


This documentation was automatically generated from the component source code.

Released under the AGPL-3.0 License.