App.vue 281 B

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