1.0.0 • Published 5 months ago

wool-components v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

:sheep: Demo

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

:sheep: 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>