input-number.vue
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<template>
<div>
<!--<Input-number :max="max" name="he" :min="-1" v-model="v1" :autofocus="autofocus"></Input-number>-->
<!--{{ v1 }}-->
<!--<div @click="c">change v1</div>-->
<!--<div @click="changeMax">change max</div>-->
<!--<Input-number disabled :max="10" :min="1" :step="1.2" v-model="v2"></Input-number>-->
<!--<Input-number :max="10" :min="1" v-model="obj.v"></Input-number>-->
{{ value1 }}
<InputNumber :precision="1" :max="10" :min="1" :step="0.1" v-model="value1"></InputNumber>
</div>
</template>
<script>
export default {
props: {},
data () {
return {
v1: 1,
v2: 1,
max: 10,
autofocus: true,
obj: {
},
value1: 1.0
};
},
computed: {},
methods: {
c () {
this.v1 = 5;
},
changeMax () {
this.max++;
}
}
};
</script>