aCustomStatistic.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {{define "component/customStatistic"}}
  2. <template>
  3. <a-statistic :title="title" :value="value">
  4. <template #prefix>
  5. <slot name="prefix"></slot>
  6. </template>
  7. <template #suffix>
  8. <slot name="suffix"></slot>
  9. </template>
  10. </a-statistic>
  11. </template>
  12. {{end}}
  13. {{define "component/aCustomStatistic"}}
  14. <style>
  15. .dark .ant-statistic-title,
  16. .dark .ant-statistic-content {
  17. color: var(--dark-color-text-primary) !important
  18. }
  19. .dark .ant-statistic-title {
  20. user-select: none;
  21. opacity: 0.55;
  22. }
  23. .ant-statistic-title {
  24. margin-bottom: 0 !important;
  25. }
  26. .ant-statistic-content-prefix {
  27. margin-right: 6px !important;
  28. }
  29. .ant-statistic-content-prefix,
  30. .ant-statistic-content-value {
  31. font-size: 1.05rem;
  32. }
  33. </style>
  34. <script>
  35. Vue.component('a-custom-statistic', {
  36. props: {
  37. 'title': {
  38. type: String,
  39. required: false,
  40. },
  41. 'value': {
  42. type: String,
  43. required: false
  44. }
  45. },
  46. template: `{{template "component/customStatistic"}}`,
  47. });
  48. </script>
  49. {{end}}