Commit 75873f9019245cae308dcdf9814b90dc3cfdc227

Authored by 梁灏
1 parent 3aca3d56

fixed #823

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 }
... ...
src/styles/components/menu.less
... ... @@ -10,6 +10,7 @@
10 10 color: @text-color;
11 11 font-size: @font-size-base;
12 12 position: relative;
  13 + z-index: @zindex-select;
13 14  
14 15 &-horizontal{
15 16 height: 60px;
... ...