@digithia/vue
v0.6.7
Published
A comprehensive Vue 3 component library providing ready-to-use components, forms, notifications, and more.
Readme
Digithia Vue
A comprehensive Vue 3 component library providing ready-to-use components, forms, notifications, and more.
Features
- 🎨 Modern and customizable components
- 📝 Form components with validation
- 🔔 Toast notifications system
- 🎯 TypeScript support
- ⚡ Built with Vue 3 and Vite
- 📦 Tree-shakeable components
Installation
npm install @digithia/vue
# or
yarn add @digithia/vue
# or
pnpm add @digithia/vueUsage
<template>
<DigithiaButton>Click me</DigithiaButton>
<DigithiaLoader />
</template>
<script setup lang="ts">
import { DigithiaButton, DigithiaLoader } from '@digithia/vue'
</script>Development
Prerequisites
- Node.js (v18 or higher)
- pnpm (recommended) or npm
Setup
# Use the correct node version
nvm use
# Install dependencies
pnpm install
# Start development server
pnpm dev
# Build library
pnpm build
# Run tests
pnpm test