App.vue 499 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div id="app">
  3. <router-view ></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. created() {
  13. },
  14. components:{
  15. },
  16. methods: {
  17. },
  18. }
  19. </script>
  20. <style lang="less">
  21. #app {
  22. font-family: Avenir, Helvetica, Arial, sans-serif;
  23. -webkit-font-smoothing: antialiased;
  24. -moz-osx-font-smoothing: grayscale;
  25. // text-align: center;
  26. // color: #2c3e50;
  27. // margin-top: 60px;
  28. }
  29. </style>