DEV Community

Cover image for Top 3 (+1) Vue libraries for your next project โฉ
Domenico Tenace for This is Learning

Posted on • Updated on • Originally published at domenicotenace.dev

Top 3 (+1) Vue libraries for your next project โฉ

Overview

Hi everyone ๐Ÿ‘‹๐Ÿผโ€‹
In this article, I'm going to look at my three favorite libraries for developing Vue applications. These are all libraries that I have used throughout my experience with this framework and that I have found interesting.
Let's start ๐Ÿค™๐Ÿผโ€‹


1. Prime Vue

PrimeVue is a complete UI suite for Vue.js consisting of a set of UI components. The project's primary goal is to boost developer productivity by offering reusable solutions that are easy to tune and customize as an in-house library.
PrimeVue was developed by PrimeTek, a world-renowned provider of popular component suites, which is also responsible for developing PrimeReact.

It's a comprehensive framework, packed with ready-to-use components and extremely flexible when it comes to customizing it to your needs. It's on the rise rapidly and has gained a lot of popularity among Vue developers in the last period.

GitHub logo primefaces / primevue

Next Generation Vue UI Component Library




2. Buefy

Buefy is a lightweight UI component library based on Vue.js and Bulma CSS.
It provides a set of stylized components using Bulma's classes, using the full power of Vue.js, encapsulating the logic for each component.

As with Bulma, one of the strengths of this framework is definitely its flexibility: you can customize the theme and style according to what you need.

GitHub logo buefy / buefy

Lightweight UI components for Vue.js based on Bulma

Buefy is a lightweight library of responsive UI components for Vue.js based on Bulma framework and design.

Check out the official @ntohq/Buefy-next fork in development for Vue v3.0.0+ support.

Features

  • Keep your current Bulma theme / variables easily
  • Supports both Material Design Icons and FontAwesome
  • Very lightweight with none internal dependencies aside from Vue & Bulma
  • About 88KB min+gzip (with Bulma included)
  • Semantic code output
  • Follows Bulma design and some of the Material Design UX
  • Focus on usability and performance without over-animating stuff

Documentation

The documentation is in the docs directory, it serves as the demo as well.

Browse online documentation here.

Quick start

You need Vue.js version 2.6+. (Vue 3 is supported here)

1 Install via npm

npm install buefy
Enter fullscreen mode Exit fullscreen mode

2 Import and use Buefy

Bundle

import Vue from 'vue';
import Buefy from 'buefy';
import 'buefy/dist/buefy.css';

Vue.use(Buefy);
Enter fullscreen mode Exit fullscreen mode

โ€ฆ

3. Oruga UI

Oruga is a lightweight UI components library for Vue.js without any dependency.
It offers a set of easily customisable components and doesn't depend on any specific style.

Oruga provides you with a set of functional components, so you can focus only on the UI/UX aspects of your application and can be entirely flexible for future changes without having to touch a line of JavaScript.

GitHub logo oruga-ui / oruga

๐Ÿ› Oruga is a lightweight library of UI components without any CSS framework dependency

Oruga UI is like a caterpillar, minimal and yet functional. It's in your hands turning it into a butterfly

(๐Ÿ›) => ๐Ÿฆ‹

Oruga is a lightweight library of UI components for Vue.js without CSS framework dependency

Note

Oruga for Vue 2.x deprecated
Due to EOL for Vue 2.x at the end of the year, from now on Oruga for Vue 2 is deprecated. Further enhancements will only be developed for Oruga-next. See #496.

Contact us ๐Ÿ‘พ

Support us โœŒ๐Ÿป

Donate using Ko-fi

Features

Oruga is a lightweight UI components library for Vue.js without any dependency It offers a set of easily customisable components and doesn't depend on any specific style or CSS framework (like Bootstrap, Bulma, TailwindCSS, etc...). Therefore, it doesn't provide a grid system or CSS utilities, but you can integrate any CSS framework you like. Oruga provides you with a set of functional components, so you can focus only onโ€ฆ

4. [BONUS] Bulma CSS

Bulma is not a framework based on Vue.js, it's a simple lightweight framework without any JavaScript dependencies.
In other words, Bulma is a CSS library, with ONLY CSS and it provides CSS classes to help you style your HTML code.

Bulma stands out for its ease of use and very low learning curve, compatible with all kind of frontend frameworks.

GitHub logo jgthms / bulma

Modern CSS framework based on Flexbox

Bulma is a modern CSS framework based on Flexbox.

Github npm npm Awesome Join the chat at https://gitter.im/jgthms/bulma Build Status

Bulma: a Flexbox CSS framework

Quick install

Bulma is constantly in development! Try it out now:

NPM

npm install bulma
Enter fullscreen mode Exit fullscreen mode

or

Yarn

yarn add bulma
Enter fullscreen mode Exit fullscreen mode

Bower

bower install bulma
Enter fullscreen mode Exit fullscreen mode

Import

After installation, you can import the CSS file into your project using this snippet:

@import 'bulma/css/bulma.css'
Enter fullscreen mode Exit fullscreen mode

CDN

https://www.jsdelivr.com/package/npm/bulma

Feel free to raise an issue or submit a pull request.

CSS only

Bulma is a CSS framework. As such, the sole output is a single CSS file: bulma.css

You can either use that file, "out of the box", or download the Sass source files to customize the variables.

There is no JavaScript included. People generally want to use their own JS implementation (and usually already have one). Bulma can be considered "environment agnostic": it's just the style layer on top of the logic.

Browser Support

Bulma uses autoprefixer to make (most) Flexboxโ€ฆ


Conclusion

I have listed what for me are the most valid frameworks for a Vue.js project, I hope this article has been helpful.
Happy coding!โœจ


Hi๐Ÿ‘‹๐Ÿป
My name is Domenico, software developer passionate of Vue.js framework, I write article about it for share my knowledge and experience.
Don't forget to visit my Linktree to discover my projects ๐Ÿซฐ๐Ÿป

Linktree: https://linktr.ee/domenicotenace

Follow me on dev.to for other articles ๐Ÿ‘‡๐Ÿป

Top comments (0)