# vue3-form-generator
**Repository Path**: droidphone/vue3-form-generator
## Basic Information
- **Project Name**: vue3-form-generator
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-09-15
- **Last Updated**: 2024-09-15
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Vue 3 Form Generator
A Vue 3 version of `vue-form-generator`, a schema-based form generator.
## Basic usage
1. Install plugin in your Vue app, this will make all necessary components globally available in your app.
```javascript
// ...
import VueFormGenerator from 'vue3-form-generator'
app.use(VueFormGenerator)
// ...
```
2. Define a schema inside your Vue component
#### Composition API:
```vue
```
#### Options API:
```vue
```