Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 500 Bytes

File metadata and controls

32 lines (23 loc) · 500 Bytes

Installation

You can install SmoothUI package via npm/pnpm:

# NPM
npm i @proxymal/smoothui

# PNPM
pnpm add @proxymal/smoothui

Usage

Add global styles to your Vue's main.ts file.

// src/main.ts
import '@proxymal/smoothui/style.css';

Now you can use Vue components in your app easily:

<script setup lang="ts">
import { KitButton } from '@proxymal/smoothui';
</script>

<template>
	<KitButton size="md" color="primary">Hello world!</KitButton>
</template>