App.vue 285 B

123456789101112131415161718192021222324
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style lang="less">
  7. body {
  8. margin: 0;
  9. }
  10. .textOver {
  11. overflow: hidden;
  12. text-overflow: ellipsis;
  13. white-space: nowrap;
  14. }
  15. .w_1200 {
  16. width: 1200px;
  17. margin: 0 auto;
  18. }
  19. p {
  20. padding: 0;
  21. margin: 0;
  22. }
  23. </style>