Skip to content

AppearanceSettings

A Vue component.

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

Overview

Props

NameTypeDefaultRequiredDescription
profileunionundefinedNo description
loadingbooleanundefinedNo description

Props Details

profile

No description available.

  • Type: union
  • Required: Yes
  • Default: undefined

loading

No description available.

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

Events

NameParametersDescription
update-appearanceanyNo description

Event Details

update-appearance

No description available.

Parameters: any

Slots

This component has no slots.

Methods

This component exposes no public methods.

Usage Example

vue
<template>
  <AppearanceSettings
    :profile="undefined"
    :loading="true"
    @update-appearance="handleUpdateAppearance" />
</template>

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

File Location

src/components/settings/user/AppearanceSettings.vue


This documentation was automatically generated from the component source code.

Released under the AGPL-3.0 License.