26 lines
369 B
Vue
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>
|