46 lines
1.3 KiB
Vue
46 lines
1.3 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-center">
|
|
<InputNumber v-model="value" showButtons buttonLayout="vertical" style="width: 3rem" :min="0" :max="99">
|
|
<template #incrementbuttonicon>
|
|
<span class="pi pi-plus" />
|
|
</template>
|
|
<template #decrementbuttonicon>
|
|
<span class="pi pi-minus" />
|
|
</template>
|
|
</InputNumber>
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import InputNumber from '@/volt/inputnumber';
|
|
import { ref } from 'vue';
|
|
|
|
const value = ref(50);
|
|
|
|
const code = ref(`
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<InputNumber v-model="value" showButtons buttonLayout="vertical" style="width: 3rem" :min="0" :max="99">
|
|
<template #incrementbuttonicon>
|
|
<span class="pi pi-plus" />
|
|
</template>
|
|
<template #decrementbuttonicon>
|
|
<span class="pi pi-minus" />
|
|
</template>
|
|
</InputNumber>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import InputNumber from '@/volt/inputnumber';
|
|
import { ref } from 'vue';
|
|
|
|
const value = ref(50);
|
|
<\/script>
|
|
`);
|
|
</script>
|