1234567891011121314151617181920212223242526 |
- <script setup lang="ts"></script>
- <template>
- <RouterView />
- </template>
- <style>
- body {
- margin: 0;
- }
- .w_1200 {
- width: 1200px;
- margin: 0 auto;
- }
- p {
- margin: 0;
- padding: 0;
- }
- .textOver {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- </style>
|