purityselect_admin/resources/js/views/demos/components/button/DemoButtonRounded.vue
2024-10-25 19:58:19 +05:00

26 lines
369 B
Vue

<template>
<div class="demo-space-x">
<VBtn>
Normal Button
</VBtn>
<VBtn
rounded="lg"
color="secondary"
>
Rounded Button
</VBtn>
<VBtn
:rounded="0"
color="success"
>
Tile Button
</VBtn>
<VBtn
rounded="pill"
color="info"
>
Pill Button
</VBtn>
</div>
</template>