Files
panel/resources/js/views/demos/components/button/DemoButtonGroup.vue

16 lines
330 B
Vue
Raw Permalink Normal View History

2025-08-04 16:33:07 +03:30
<script setup>
const toggleExclusive = ref(1)
</script>
<template>
<VBtnToggle
v-model="toggleExclusive"
density="comfortable"
>
<VBtn icon="tabler-align-left" />
<VBtn icon="tabler-align-center" />
<VBtn icon="tabler-align-right" />
<VBtn icon="tabler-align-justified" />
</VBtnToggle>
</template>