Demo update

pull/310/head
cagataycivici 2020-04-18 15:48:09 +03:00
parent afd351100c
commit 21d8f85221
1 changed files with 9 additions and 3 deletions

View File

@ -11,11 +11,11 @@
<h3>Numerals</h3> <h3>Numerals</h3>
<div class="p-grid p-fluid"> <div class="p-grid p-fluid">
<div class="p-col-12 p-md-3"> <div class="p-col-12 p-md-3">
Integer Only - {{value1}} Integer Only
<InputNumber v-model="value1" /> <InputNumber v-model="value1" />
</div> </div>
<div class="p-col-12 p-md-3"> <div class="p-col-12 p-md-3">
Without Grouping - {{value2}} Without Grouping
<InputNumber v-model="value2" mode="decimal" :useGrouping="false" /> <InputNumber v-model="value2" mode="decimal" :useGrouping="false" />
</div> </div>
<div class="p-col-12 p-md-3"> <div class="p-col-12 p-md-3">
@ -145,3 +145,9 @@ export default {
} }
} }
</script> </script>
<style scoped>
.p-inputnumber {
margin-top: 1em;
}
</style>