npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-ui-fields

v4.2.1

Published

UI Fields plugin for VueJS

Downloads

29

Readme

Vue UI Fields

Welcome to Vue UI Fields. UI Fields is a Vue plugin to manage and setup forms with just a few lines of code. UI Fields will then create all the components for you and manage all data you need to submit your form.

The idea of UI Fields started in 2018. For multiple projects Dennis created some component based forms to manage the checkout of a ecommerce website. As these componenents progressed we found multiple issues regarding the state management of Vue. This is why we created a plugin using the Vuex state management that can create forms. This was the first version of UI Fields.

UI Fields was made to create forms with the same layout along a larger development team. UI Fields consisted of multiple single field options, like a text input. These componenents could be included anywhere in your project. The main problem was that a single component could not manipulate data over other components. This resulted in a complex strucutre using the emit functions from Vue with a lot of chaos among the developers.

When creating larger forms in Vue you often use Vuex to solve the problem described above. This is a good solution as Vue offers this with the help of computed getters and setters. But as your form grows the Vuex increases in mutation listeners. If you use a computed value with some watchers this can result in some slow feedback along your website and a decrease in performance.

From this point of view and many iterations UI Fields was created to solve these problems. UI Fields now offers the ability to create faster forms with logic among the components. UI Fields uses data manipulation based on Vue prototype wich has a much faster resolving as it skips a lot of mutation handlers by Vue. You can subscribe and listen to these events programmatically if needed.

Documentation

To get started on UI Fields download the node module and follow the instructions. UI Fields offers a way to create simple forms to complex logic for toggle methods and SSR validation combined with client validation.

You can find the documentation on https://vue-ui-fields.dev.

Author

UI Fields is created by @dipsaus9. The project is open source so feel free to submit a PR.