App.vue 308 B

123456789101112131415161718192021222324
  1. /*入口*/
  2. <template>
  3. <div id="app">
  4. <router-view />
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'App'
  10. }
  11. </script>
  12. <style>
  13. #app {
  14. width: 100%;
  15. min-width: 1000px;
  16. height: 100%;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. color: #2c3e50;
  20. }
  21. </style>