123456789101112131415161718192021222324 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <style lang="less">
- body {
- margin: 0;
- }
- .textOver {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .w_1200 {
- width: 1200px;
- margin: 0 auto;
- }
- p {
- padding: 0;
- margin: 0;
- }
- </style>
|