Skip to content

VoiceSettingsPanel

A Vue component.

File: src/components/voice/VoiceSettingsPanel.vue

Overview

Props

This component has no props.

Events

NameParametersDescription
closeunknownNo description
update-settingsunknownNo description

Event Details

close

No description available.

Parameters: unknown

update-settings

No description available.

Parameters: unknown

Slots

This component has no slots.

Methods

This component exposes no public methods.

Usage Example

vue
<template>
  <VoiceSettingsPanel
    @close="handleClose"
    @update-settings="handleUpdateSettings" />
</template>

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

const handleUpdateSettings = (data: unknown) => {
  // Handle update-settings event
}
</script>

File Location

src/components/voice/VoiceSettingsPanel.vue


This documentation was automatically generated from the component source code.

Released under the AGPL-3.0 License.