Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 888 Bytes

README.md

File metadata and controls

48 lines (36 loc) · 888 Bytes

Wool Components

🐑 Wool Components 🐑

FUCKING NOISY BUT CUTE

Vue UI components library



🐑 Demo

https://woolimi.github.io/wool-components/



🐑 Getting Started

1. Download

yarn add wool-components@latest

2. Import index.css file in main.ts

import { createApp } from 'vue';
import App from './App.vue';
import 'wool-components/dist/index.css';

createApp(App).mount('#app');

3. Import component

<script setup>
import { WButton } from 'wool-components';
</script>