Skip to content

VUIIIVue 3 Component Library

A comprehensive set of UI components, composables, and utilities for building modern web applications.

Quick Start

Install the package:

bash
npm install vuiii

Import components and styles:

typescript
import { Button, Input, Select, FormFields } from "vuiii";
import "vuiii/style.css";

Use in your Vue app:

vue
<template>
  <Button variant="primary" label="Click me" />
</template>

Released under the MIT License.