52 lines
1.4 KiB
Vue
52 lines
1.4 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Button provides <i>small</i> and <i>large</i> sizes as alternatives to the base.</p>
|
|
</DocSectionText>
|
|
<div class="card flex flex-wrap items-center justify-center gap-4">
|
|
<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 items-center justify-center gap-4">
|
|
<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 items-center justify-center gap-4">
|
|
<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>
|