App.vue 309 B

12345678910111213141516171819
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style lang="scss">
  12. //to fix 在ios设备中,el-select组件下拉框,点击2次才能选中问题。
  13. .el-scrollbar {
  14. .el-scrollbar__bar {
  15. opacity: 1 !important;
  16. }
  17. }
  18. </style>