App.vue 532B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div id="app">
  3. <!-- <img alt="Vue logo" src="./assets/logo.png" /> -->
  4. <router-view></router-view>
  5. </div>
  6. </template>
  7. <script>
  8. import Honghe from './pages/Honghe.vue'
  9. export default {
  10. name: 'App',
  11. components: {
  12. Honghe
  13. }
  14. }
  15. </script>
  16. <style>
  17. html,
  18. body {
  19. margin: 0;
  20. padding: 0;
  21. }
  22. #app {
  23. font-family: Avenir, Helvetica, Arial, sans-serif;
  24. -webkit-font-smoothing: antialiased;
  25. -moz-osx-font-smoothing: grayscale;
  26. text-align: center;
  27. color: #2c3e50;
  28. /* margin-top: 60px; */
  29. }
  30. </style>