@qnx/vuetify
is a Vue.js library designed to simplify Vuetify form, streamlining code and handling various processes internally, including validation, data set management, and server data submission. This approach aims to reduce code complexity and promote clean and manageable code.
To see examples of components provided by @qnx/vuetify, please visit here. For complete documentation, visit @qnx/vuetify Documentation.
Use the package manager npm to install @qnx/vuetify.
npm install @qnx/vuetify
You can also use yarn, pnpm, or bun
yarn add @qnx/vuetify
pnpm install @qnx/vuetify
bun install @qnx/vuetify
@qnx/vuetify resolves problems internally and depends on some other libraries.
npm install vuetify@latest @qnx/composables @vee-validate yup axios
<script setup>
import { VqForm, VqTextField } from '@qnx/vuetify'
import { object, string } from 'yup';
let validationSchema= object({
name: string().required(),
email: string().required().email(),
});
const initialValues = { name:'Test User', email:'[email protected]' }
const onSuccess = (res) => { console.log(res) }
</script>
<template>
<VqForm
action="user/create"
method="POST"
:validation-schema="validationSchema"
:initial-values="initialValues"
@submited-success="onSuccess"
>
<vq-text-field
name="name"
label="Name"
placeholder="Name"
/>
<vq-text-field
name="email"
label="Email"
placeholder="Email"
/>
<button type="submit">Submit</button>
<VqForm />
</template>
Here's a list of components provided by @qnx/vuetify:
- VqTextField
- VqTextarea
- VqAutocomplete
- VqFileInput
- VqForm
- VqCheckbox
- VqDatePicker
- VqTimePicker
- VqColorPicker
- VqOtpInput
- VqSubmitBtn
- VqDataTable
- VqSerialNo
- VqList
- VqTableFilter
- VqListLoadMoreBtn
- VqTextEditor
- useVqForm
- collectVqHeaders
- useVqList
Additionally, @qnx/vuetify extends existing components that are specifically useful in the context of forms. The library also includes additional components designed for displaying data. Overall, it appears to be a comprehensive solution for simplifying the implementation of forms and managing data presentation within Vuetify-based applications.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
MIT License © 2023-PRESENT Yatendra Kushwaha