App.vue 309 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'app',
  9. components: {
  10. },
  11. methods:{
  12. },
  13. }
  14. </script>
  15. <style>
  16. *{
  17. font-family: "微软雅黑"
  18. }
  19. .noDataFont{
  20. height: .5rem;
  21. line-height: .5rem;
  22. color: #666666;
  23. text-align: center
  24. }
  25. </style>