Vuelity is a lightweight, 'use-what-you-need' component library for Vue.js v3

INSTALLATION

CLI
CDN
npm i vuelity
import { VTButton } from 'vuelity'; ... components: { VTButton }
or, register all at once in main.js:
import * as Vuelity from 'vuelity'; ...
Object.keys(Vuelity).forEach(el => {
app.component(el, Vuelity[el]);
});
then:
<VTButton>Hello!</VTButton>
Try a full demo on Codepen!