Commit 75873f9019245cae308dcdf9814b90dc3cfdc227
1 parent
3aca3d56
fixed #823
Showing
2 changed files
with
4 additions
and
1 deletions
Show diff stats
examples/routers/menu.vue
... | ... | @@ -36,13 +36,15 @@ |
36 | 36 | <Radio label="dark"></Radio> |
37 | 37 | <Radio label="primary"></Radio> |
38 | 38 | </Radio-group> |
39 | + <Input v-model="value4" icon="ios-clock-outline" placeholder="请输入..." style="width: 200px"></Input> | |
39 | 40 | </div> |
40 | 41 | </template> |
41 | 42 | <script> |
42 | 43 | export default { |
43 | 44 | data () { |
44 | 45 | return { |
45 | - theme1: 'light' | |
46 | + theme1: 'light', | |
47 | + value4: '' | |
46 | 48 | } |
47 | 49 | } |
48 | 50 | } | ... | ... |