App.vue 562 B

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