create button component

This commit is contained in:
Geriano
2022-07-30 10:38:28 +07:00
parent ef79fd9451
commit ff54776fc4
10 changed files with 121 additions and 92 deletions

View File

@@ -0,0 +1,9 @@
<script setup>
import Button from '../Button.vue'
</script>
<template>
<Button class="bg-gray-800 hover:bg-gray-600 active:bg-gray-800">
<slot />
</Button>
</template>