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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@agrisom/vue-components-ui

v1.0.4

Published

Vue 3 Component Library

Downloads

7

Readme

Welcome to Vue Components UI

Welcome to Vue Components UI – The ultimate library of customizable components designed to elevate your Vue projects to the next level!

This library contains everything you need to create an amazing Vue project in no time. All of the components are built using the latest technologies including Vue 3 (Script setup), Typescript, HTML and SCSS, making them the most consistent and reliable components available. With type checking, our components are designed to catch errors, save time and improve the quality of your code. Also the rollup offers optimizations like tree shaking to remove any component that hasn't been used. All components are fully customizable and use props and slots to personalize every detail, while CSS variables help create unique styles that match your project's needs.

With Typescript, you can use extensions such as Volar and ESLint to autocomplete props, check errors, and more.

This library is currently under construction, but we'll be releasing new components as soon as they're tested and ready for use.

How it works

Collaborators

Installation

This library is published to the npm repository, making the installation process a breeze. Simply add this dependency, import styles and start developing.

Dependency: npm

Install the latest version:

npm install --save-dev vue-components-ui

Or import an especific version:

npm install --save-dev vue-components-ui#0.1.4

Import styles

After installing the dependency, import the CSS file to your main Vue instance or HTML head to use the library's styles. Customize the look and feel of the components by rewriting the CSS variables to match your project's needs.

main.ts

import 'vue-components-ui/style.css';

Usage

After completing the installation steps we are ready to use the components. For this, import them individually on demand. This approach ensures that components are loaded only when needed, minimizing the time it takes to load your page. In addition, Vue and Vite's tree-shaking feature will automatically exclude unused components from the final build.

Usage example

Page.vue

<script setup lang="ts">
import { MyComponent } from 'vue-components-ui';
</script>

<template>
  <MyComponent text="My Header" color="green"/>
</template>

Error checking and autocomplete

Using Typescript will not only make implementation easier, but also faster and more efficient, resulting in higher-quality code. With extensions like Volar and ESLint, developers can easily manage props, catch errors, and even auto-complete code, making the development process more streamlined and efficient.

Repository

All the code is public on GitHub, so you can review, learn, and even improve it for your specific needs.

Check out the code on github, agrisom/vue-components-ui

Documentation

Our Vue Components UI library is fully documented and testable with Storybook, a user interface development environment for testing and showcasing interactive components. We've published a version of Storybook on Netlify, where you can access documentation for each component, as well as a playground and testing tools. This way, you can easily see how each component works, test it out for yourself, and integrate it into your Vue projects with confidence.

All components are testable and documented with storybook.

A version of storybook is publish via netlify. There you will found documentation for every component along with a playground and testing tools

Vue Components UI - Documentation