14 lines
366 B
Vue
14 lines
366 B
Vue
<template>
|
|
<div class="vp-raw">
|
|
<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>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import { ButtonGroup, Button } from '../../../../src/index'
|
|
</script>
|