App.vue 504 B

12345678910111213141516171819202122232425262728293031
  1. <script setup>
  2. import zhCN from 'ant-design-vue/es/locale/zh_CN'
  3. </script>
  4. <template>
  5. <a-config-provider :locale="zhCN">
  6. <router-view />
  7. </a-config-provider>
  8. </template>
  9. <style lang="scss">
  10. body {
  11. margin: 0;
  12. }
  13. .w_1200 {
  14. width: 1200px;
  15. margin: 0 auto;
  16. }
  17. .textOver {
  18. overflow: hidden;
  19. text-overflow: ellipsis;
  20. white-space: nowrap;
  21. }
  22. .textMore {
  23. display: -webkit-box;
  24. -webkit-line-clamp: 2;
  25. -webkit-box-orient: vertical;
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. }
  29. </style>