Skip to content

KeybindSettings

A Vue component.

File: src/components/settings/user/KeybindSettings.vue

Overview

Props

NameTypeDefaultRequiredDescription
loadingbooleanundefinedNo description

Props Details

loading

No description available.

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

Events

NameParametersDescription
update-keybindsanyNo description

Event Details

update-keybinds

No description available.

Parameters: any

Slots

This component has no slots.

Methods

This component exposes no public methods.

Usage Example

vue
<template>
  <KeybindSettings
    :loading="true"
    @update-keybinds="handleUpdateKeybinds" />
</template>

<script setup lang="ts">
const handleUpdateKeybinds = (data: any) => {
  // Handle update-keybinds event
}
</script>

File Location

src/components/settings/user/KeybindSettings.vue


This documentation was automatically generated from the component source code.

Released under the AGPL-3.0 License.