App.vue 538 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div id="app">
  3. <h1>你好呀!!</h1>
  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>