a599d2bf by simon

默认提交

1 parent 837c0c11
Showing 39 changed files with 10 additions and 7 deletions
1 <template> 1 <template>
2 <div id="app"> 2 <div id="app">
3 <v-header></v-header> 3 <v-header></v-header>
4 <main ref="container" class="main-container"> 4 <main ref="container" class="main-container">
5 <router-view/> 5 <router-view/>
6 </main> 6 </main>
7 <v-footer></v-footer> 7 <v-footer></v-footer>
8 </div> 8 </div>
9 </template> 9 </template>
10 10
11 11
...@@ -190,6 +190,9 @@ select { ...@@ -190,6 +190,9 @@ select {
190 -webkit-appearance: none; 190 -webkit-appearance: none;
191 -moz-appearance: none; 191 -moz-appearance: none;
192 } 192 }
193 select::-ms-expand {
194 display: none;
195 }
193 196
194 input { 197 input {
195 background: none; 198 background: none;
......