15 lines
330 B
Vue
15 lines
330 B
Vue
<template>
|
|
<tiny-button-group :data="groupData" plain></tiny-button-group>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { ButtonGroup as TinyButtonGroup } from '@opentiny/vue'
|
|
|
|
const groupData = ref([
|
|
{ text: 'Button1', value: 1 },
|
|
{ text: 'Button2', value: 2 },
|
|
{ text: 'Button3', value: 3 }
|
|
])
|
|
</script>
|