Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.27 KB

Introduction.story.md

File metadata and controls

49 lines (36 loc) · 1.27 KB
group icon
top
carbon:bookmark

Wool Components

Wool Components

FUCKING NOISY BUT CUTE
Vue UI components library

Go to Git repository



🐑 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>