@vue-formify/primevue
v0.0.34
Published
PrimeVue components integration for vue-formify
Downloads
4
Maintainers
Readme
📦 Install
npm i @vue-formify/primevue
💻 Usage
<script lang="ts" setup>
import { InputText } from '@vue-formify/primevue';
const send = (data: any) => {
console.log(data);
};
</script>
<template>
<FormifyForm @submit="send">
<InputText name="email" />
<button>Send</button>
</FormifyForm>
</template>
⚠️ Known issues
- InputOtp: Basic component not working properly, but with template everything is fine. It is a bug in the PrimeVue package.
- Password: Bug in the PrimeVue package.