Commit 3e012ca94d33114ccc5f34d5c124274d097bdbce

Authored by 梁灏
1 parent 09a5ac8e

fix #4941

Showing 2 changed files with 1 additions and 2 deletions   Show diff stats
examples/index.html
... ... @@ -3,6 +3,7 @@
3 3 <head>
4 4 <meta charset="UTF-8">
5 5 <title>iView test page</title>
  6 + <meta name="viewport" content="user-scalable=no,width=device-width,initial-scale=1"/>
6 7 <!-- <link href="/test/dist/main.css" rel="stylesheet"> -->
7 8 </head>
8 9 <body>
... ...
src/components/select/option.vue
... ... @@ -2,9 +2,7 @@
2 2 <li
3 3 :class="classes"
4 4 @click.stop="select"
5   - @touchend.stop="select"
6 5 @mousedown.prevent
7   - @touchstart.prevent
8 6 ><slot>{{ showLabel }}</slot></li>
9 7 </template>
10 8 <script>
... ...