7d5431d8
梁灏
update some style
|
1
|
<template>
|
b89a982e
梁灏
fixed #205
|
2
3
|
<i-input type="textarea" :autosize="true" placeholder="请输入..."></i-input>
<i-input type="textarea" :autosize="{minRows: 2,maxRows: 5}" placeholder="请输入..."></i-input>
|
731d69a2
梁灏
fixed #101
|
4
|
<i-input name="a" icon="ios-clock-outline" @on-focus="focus" @on-blur="blur" readonly style="width:200px;" :value.sync="v" @on-enter="enter" @on-click="iconclick" size="large" placeholder="请输入"></i-input>
|
0f822c9b
梁灏
add Input component
|
5
|
<i-input icon="ios-clock-outline" style="width:200px;" :value.sync="v" @on-enter="enter" placeholder="请输入"></i-input>
|
731d69a2
梁灏
fixed #101
|
6
|
<i-input name="b" icon="ios-clock-outline" style="width:200px;" :value.sync="v" @on-enter="enter" size="small" placeholder="请输入"></i-input>
|
0f822c9b
梁灏
add Input component
|
7
8
9
10
11
12
13
14
|
<br>
<br>
<i-input style="width:200px;" :value.sync="v" @on-enter="enter" size="large" placeholder="请输入"></i-input>
<i-input style="width:200px;" :value.sync="v" @on-enter="enter" placeholder="请输入"></i-input>
<i-input style="width:200px;" :value.sync="v" @on-enter="enter" @on-change="change" size="small" placeholder="请输入"></i-input>
{{ v }}
<br>
<br>
|
0a48ac45
梁灏
Input add readonl...
|
15
|
<i-input readonly placeholder="this is something" style="width:200px;" :value.sync="t" type="textarea" :autosize="autosize"></i-input>
|
0f822c9b
梁灏
add Input component
|
16
17
18
19
|
{{ t }}
<br>
<br>
<div style="width: 400px">
|
d3eee3f4
梁灏
fixed #123
|
20
|
<i-input :value.sync="v" type="password">
|
0f822c9b
梁灏
add Input component
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<span slot="prepend">http://</span>
<span slot="append">
<i-button icon="ios-search"></i-button>
</span>
</i-input>
<br>
<i-input :value.sync="v">
<span slot="prepend">http://</span>
<span slot="append"><Icon type="ios-search"></Icon></span>
</i-input>
<br>
<i-input :value.sync="v" size="small">
<span slot="prepend">http://</span>
<span slot="append"><Icon type="ios-search"></Icon></span>
</i-input>
<br>
<i-input :value.sync="v" size="large">
<i-select :model.sync="select1" slot="prepend" style="width: 80px">
<i-option value="http">http://</i-option>
<i-option value="https">https://</i-option>
</i-select>
<i-select :model.sync="select2" slot="append" style="width: 70px">
<i-option value="com">.com</i-option>
<i-option value="cn">.cn</i-option>
<i-option value="net">.net</i-option>
<i-option value="io">.io</i-option>
</i-select>
</i-input>
<br>
<i-input :value.sync="v">
<i-select :model.sync="select1" slot="prepend" style="width: 80px">
<i-option value="http">http://</i-option>
<i-option value="https">https://</i-option>
</i-select>
<i-select :model.sync="select2" slot="append" style="width: 70px">
<i-option value="com">.com</i-option>
<i-option value="cn">.cn</i-option>
<i-option value="net">.net</i-option>
<i-option value="io">.io</i-option>
</i-select>
</i-input>
<br>
<i-input :value.sync="v" size="small">
<i-select :model.sync="select1" slot="prepend" style="width: 80px">
<i-option value="http">http://</i-option>
<i-option value="https">https://</i-option>
</i-select>
<i-select :model.sync="select2" slot="append" style="width: 70px">
<i-option value="com">.com</i-option>
<i-option value="cn">.cn</i-option>
<i-option value="net">.net</i-option>
<i-option value="io">.io</i-option>
</i-select>
</i-input>
|
3c01d81a
梁灏
fixed Modal bug,w...
|
76
77
78
|
<Input-number :value="2" size="small"></Input-number>
<Input-number :value="2"></Input-number>
<Input-number :value="2" size="large"></Input-number>
|
6c145a04
梁灏
fixed #77
|
79
|
<i-input type="password"></i-input>
|
0f822c9b
梁灏
add Input component
|
80
|
</div>
|
7d5431d8
梁灏
update some style
|
81
82
|
</template>
<script>
|
3c01d81a
梁灏
fixed Modal bug,w...
|
83
|
import { iInput, Icon, iButton, iSelect, iOption, InputNumber } from 'iview';
|
7d5431d8
梁灏
update some style
|
84
85
86
|
export default {
components: {
|
0f822c9b
梁灏
add Input component
|
87
88
89
90
|
iInput,
Icon,
iButton,
iSelect,
|
3c01d81a
梁灏
fixed Modal bug,w...
|
91
92
|
iOption,
InputNumber
|
7d5431d8
梁灏
update some style
|
93
94
|
},
props: {
|
0f822c9b
梁灏
add Input component
|
95
|
|
7d5431d8
梁灏
update some style
|
96
97
98
|
},
data () {
return {
|
0f822c9b
梁灏
add Input component
|
99
100
101
102
103
104
105
106
|
v: 'hello',
t: '',
autosize: {
minRows: 2,
maxRows: 5
},
select1: 'http',
select2: 'com'
|
7d5431d8
梁灏
update some style
|
107
108
109
|
}
},
computed: {
|
0f822c9b
梁灏
add Input component
|
110
|
|
7d5431d8
梁灏
update some style
|
111
112
|
},
methods: {
|
0f822c9b
梁灏
add Input component
|
113
114
115
116
117
118
119
120
|
enter () {
console.log(123)
},
iconclick () {
console.log('iconclicked')
},
change (val) {
console.log(val)
|
0a48ac45
梁灏
Input add readonl...
|
121
122
123
124
125
126
|
},
focus () {
this.$Message.info('focus');
},
blur () {
this.$Message.info('blur');
|
0f822c9b
梁灏
add Input component
|
127
|
}
|
7d5431d8
梁灏
update some style
|
128
129
130
|
}
}
</script>
|