App.vue 365 B

123456789101112131415161718192021222324252627282930313233
  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. .cube-picker-wheel-item{
  17. font-size: 12px!important;
  18. }
  19. *{
  20. font-family: "微软雅黑"
  21. }
  22. .noDataFont{
  23. height: .5rem;
  24. line-height: .5rem;
  25. color: #666666;
  26. text-align: center
  27. }
  28. </style>