Skip to content

CategoryCreator

A Vue component.

File: src/components/CategoryCreator.vue

Overview

Props

This component has no props.

Events

NameParametersDescription
showCategoryCreatorbooleanNo description
createCategorystringNo description

Event Details

showCategoryCreator

No description available.

Parameters: boolean

createCategory

No description available.

Parameters: string

Slots

This component has no slots.

Methods

This component exposes no public methods.

Usage Example

vue
<template>
  <CategoryCreator
    @showCategoryCreator="handleShowCategoryCreator"
    @createCategory="handleCreateCategory" />
</template>

<script setup lang="ts">
const handleShowCategoryCreator = (data: boolean) => {
  // Handle showCategoryCreator event
}

const handleCreateCategory = (data: string) => {
  // Handle createCategory event
}
</script>

File Location

src/components/CategoryCreator.vue


This documentation was automatically generated from the component source code.

Released under the AGPL-3.0 License.