46 lines
1.5 KiB
Vue
46 lines
1.5 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Button provides <i>small</i> and <i>large</i> sizes as alternatives to the standard.</p>
|
|
</DocSectionText>
|
|
<div class="card flex flex-wrap align-items-center justify-content-center gap-3">
|
|
<Button label="Small" icon="pi pi-check" size="small" />
|
|
<Button label="Normal" icon="pi pi-check" />
|
|
<Button label="Large" icon="pi pi-check" size="large" />
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
code: {
|
|
basic: `<Button label="Small" icon="pi pi-check" size="small" />
|
|
<Button label="Normal" icon="pi pi-check" />
|
|
<Button label="Large" icon="pi pi-check" size="large" />`,
|
|
options: `<template>
|
|
<div class="card flex flex-wrap align-items-center justify-content-center gap-3">
|
|
<Button label="Small" icon="pi pi-check" size="small" />
|
|
<Button label="Normal" icon="pi pi-check" />
|
|
<Button label="Large" icon="pi pi-check" size="large" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
<\/script>`,
|
|
composition: `<template>
|
|
<div class="card flex flex-wrap align-items-center justify-content-center gap-3">
|
|
<Button label="Small" icon="pi pi-check" size="small" />
|
|
<Button label="Normal" icon="pi pi-check" />
|
|
<Button label="Large" icon="pi pi-check" size="large" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
<\/script>`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|