App.vue 869 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <<<<<<< HEAD
  3. <!-- <img alt="Vue logo" src="./assets/logo.png"> -->
  4. <HelloWorld msg="Welcome to Your Vue.js App"/>
  5. </template>
  6. <script>
  7. // import HelloWorld from './components/HelloWorld.vue'
  8. import HelloWorld from './views/AdminPage.vue'
  9. =======
  10. <img alt="Vue logo" src="./assets/logo.png">
  11. <HelloWorld msg="Welcome to Your Vue.js App"/>
  12. </template>
  13. <script>
  14. import HelloWorld from './components/HelloWorld.vue'
  15. >>>>>>> 0566a0e703f9d3a722fc62cd963287b9fb4807fa
  16. export default {
  17. name: 'App',
  18. components: {
  19. HelloWorld
  20. }
  21. }
  22. </script>
  23. <style>
  24. #app {
  25. font-family: Avenir, Helvetica, Arial, sans-serif;
  26. -webkit-font-smoothing: antialiased;
  27. -moz-osx-font-smoothing: grayscale;
  28. text-align: center;
  29. color: #2c3e50;
  30. <<<<<<< HEAD
  31. margin-top: 0px;
  32. =======
  33. margin-top: 60px;
  34. >>>>>>> 0566a0e703f9d3a722fc62cd963287b9fb4807fa
  35. }
  36. </style>