App.vue 422 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. created() {
  10. },
  11. mounted() {
  12. },
  13. methods:{
  14. }
  15. }
  16. </script>
  17. <style>
  18. *{
  19. margin: 0;
  20. padding: 0;
  21. }
  22. body{
  23. font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
  24. }
  25. #app {
  26. height: 100%;
  27. width: 100%;
  28. }
  29. </style>