simple-vui
v0.0.2-beta.1
Published
| The main scope of this library is to learn how TSX works with Vue3.
Readme
SimpleVUI
| The main scope of this library is to learn how TSX works with Vue3.Features
- 📄 Comprehensive documentation with VitePress
- 🛝 Interactive Storybook playground
- 🌲 Tree shakeable
- ⚒️ Built with Vue3 + TypeScript (TSX)Get Started
Installation
Let's start by installing the package with your favourite package manager:
pnpm add simple-vui
Or:
npm i simple-vui
And we are done! 👏
Example
Import a component from simple-vui and try it out:
<script setup>
import { Avatar } from 'simple-vui'
</script>
<template>
<Avatar
placeholder="SV"
size="big"
type="rounded"
/>
</template>