App.vue 373 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style lang="scss">
  7. ul {
  8. list-style: none;
  9. margin: 0;
  10. padding: 0;
  11. }
  12. #app {
  13. width: 100vw;
  14. height: 100vh;
  15. background-color: rgba(242, 242, 242, 1);
  16. box-sizing: border-box;
  17. }
  18. .van-picker {
  19. .van-ellipsis {
  20. line-height: 88px;
  21. }
  22. }
  23. </style>
  24. <style>
  25. @import "./style/index.css";
  26. </style>