Vue UI library

In the development of websites/apps there are alot of re-accuring elements, like buttons, sliders, modal, etc. I built a UI library in a npm package to have all those elements centralized in 1 place, that can be implemented in projects. The goal was to have a code base where it is easy to implement these standard components, but to keep the freedom to redesign and extend the components as needed. This was done by using props and slots to be able to overrule settings and templates.

'Global' elements

In the library there are a number of elements that are used throughout the whole project. The most important ones are: Accordion, Alert, Button, Loader, LoadingBar, Slider and Tooltip. Below you can see some examples of how the elements can be used in a projects.

Form components

TODO

Complex components

TODO