微信

App.vue 481B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. // import overscroll from './util/scroll'
  8. export default {
  9. name: 'App',
  10. mounted () {
  11. // overscroll(window.document.getElementById('app'))
  12. }
  13. }
  14. </script>
  15. <style>
  16. #app {
  17. font-family: "Avenir", Helvetica, Arial, sans-serif;
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. text-align: center;
  21. color: #2c3e50;
  22. }
  23. ::-webkit-scrollbar {
  24. display: none;
  25. }
  26. </style>