forked from opentiny/tiny-vue
12 lines
335 B
Vue
12 lines
335 B
Vue
<template>
|
|
<tiny-button-group>
|
|
<tiny-button type="primary">Button1</tiny-button>
|
|
<tiny-button type="success">Button2</tiny-button>
|
|
<tiny-button disabled>Button3</tiny-button>
|
|
</tiny-button-group>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { Button as TinyButton, ButtonGroup as TinyButtonGroup } from '@opentiny/vue'
|
|
</script>
|