feat: button group

This commit is contained in:
Alexandr
2022-07-01 17:17:48 +03:00
parent f0cd1a8444
commit 9e76cdf938
6 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<template>
<button-group>
<Button>hello world</Button>
<Button color="purple">hello world</Button>
<Button color="alternative">hello world</Button>
<Button color="red">hello world</Button>
</button-group>
</template>
<script setup>
import { ButtonGroup, Button } from '../../../../src/index'
</script>