67 lines
2.0 KiB
Vue
67 lines
2.0 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Buttons can also placed vertically by setting <i>buttonLayout</i> as <i>vertical</i>.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-content-center">
|
|
<InputNumber
|
|
v-model="value"
|
|
showButtons
|
|
buttonLayout="vertical"
|
|
style="width: 4rem"
|
|
decrementButtonClassName="p-button-secondary"
|
|
incrementButtonClassName="p-button-secondary"
|
|
incrementButtonIcon="pi pi-plus"
|
|
decrementButtonIcon="pi pi-minus"
|
|
/>
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: 50,
|
|
code: {
|
|
basic: `
|
|
<InputNumber v-model="value" showButtons buttonLayout="vertical" style="width: 4rem"
|
|
decrementButtonClassName="p-button-secondary" incrementButtonClassName="p-button-secondary" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" />
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card flex justify-content-center">
|
|
<InputNumber v-model="value" showButtons buttonLayout="vertical" style="width: 4rem"
|
|
decrementButtonClassName="p-button-secondary" incrementButtonClassName="p-button-secondary" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: 50
|
|
}
|
|
}
|
|
}
|
|
<\/script>
|
|
`,
|
|
composition: `
|
|
<template>
|
|
<div class="card flex justify-content-center">
|
|
<InputNumber v-model="value" showButtons buttonLayout="vertical" style="width: 4rem"
|
|
decrementButtonClassName="p-button-secondary" incrementButtonClassName="p-button-secondary" incrementButtonIcon="pi pi-plus" decrementButtonIcon="pi pi-minus" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from "vue";
|
|
|
|
const value = ref(50);
|
|
<\/script>
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|