Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arnauddoub/formyle
Advanced Vue 3 form conception
https://github.com/arnauddoub/formyle
form form-builder vite vue vue-components vue3 vuejs
Last synced: 3 months ago
JSON representation
Advanced Vue 3 form conception
- Host: GitHub
- URL: https://github.com/arnauddoub/formyle
- Owner: arnauddoub
- License: mit
- Created: 2021-01-07T10:44:20.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-01T15:59:46.000Z (over 1 year ago)
- Last Synced: 2024-03-15T16:34:50.788Z (8 months ago)
- Topics: form, form-builder, vite, vue, vue-components, vue3, vuejs
- Language: Vue
- Homepage: https://formyle.pages.dev/
- Size: 1.06 MB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Formyle
Advanced Vue 3 form conception
## Features
- ⚡️ Vue 3, Vite 2, Vuex 4, Tailwindcss 2
- 🚀 Steps routed system
- 🖨 Multiple versions (A/B Testing, source, ...)
- Soon (...)## Install
### npm:
```bash
pnpm install formyle
```
### yarn:
```bash
pnpm add formyle
```## Usage
### All components
```js
import { createApp } from 'vue'
import Formyle from 'formyle'
import 'formyle/dist/style.css'createApp.use(Formyle)
```