forked from opentiny/tiny-vue
23 lines
398 B
Vue
23 lines
398 B
Vue
<template>
|
|
<tiny-button-group :data="groupData"></tiny-button-group>
|
|
</template>
|
|
|
|
<script>
|
|
import { ButtonGroup } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyButtonGroup: ButtonGroup
|
|
},
|
|
data() {
|
|
return {
|
|
groupData: [
|
|
{ text: 'Button1', value: 1 },
|
|
{ text: 'Button2', value: 2 },
|
|
{ text: 'Button3', value: 3 }
|
|
]
|
|
}
|
|
}
|
|
}
|
|
</script>
|