12345678910111213141516171819202122232425262728293031 |
- <script setup>
- import zhCN from 'ant-design-vue/es/locale/zh_CN'
- </script>
- <template>
- <a-config-provider :locale="zhCN">
- <router-view />
- </a-config-provider>
- </template>
- <style lang="scss">
- body {
- margin: 0;
- }
- .w_1200 {
- width: 1200px;
- margin: 0 auto;
- }
- .textOver {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .textMore {
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- </style>
|