Files
PhotonVision/chameleon-client/src/components/ch-inputNumber.vue

28 lines
545 B
Vue
Raw Normal View History

2019-03-20 22:35:02 +02:00
<template>
<div id="InputNumber">
<row type="flex" justify="start" align="middle" :gutter="10" >
<Col span="6">
<h4>{{title}}</h4>
</Col>
<col span="4">
<InputNumber :min="0" v-model="value" size="small"></InputNumber>
</col>
</row>
</div>
</template>
<script>
export default {
name: 'ch-InputNumber',
props:['title'],
data() {
return {
value
}
}
}
</script>
<style lang="" scoped>
</style>