aCustomStatistic.html 867 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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-content {
  16. color: var(--dark-color-text-primary)
  17. }
  18. .dark .ant-statistic-title {
  19. color: rgba(255, 255, 255, 0.55)
  20. }
  21. .ant-statistic-content {
  22. font-size: 16px;
  23. }
  24. </style>
  25. <script>
  26. Vue.component('a-custom-statistic', {
  27. props: {
  28. 'title': {
  29. type: String,
  30. required: false,
  31. },
  32. 'value': {
  33. type: String,
  34. required: false
  35. }
  36. },
  37. template: `{{template "component/customStatistic"}}`,
  38. });
  39. </script>
  40. {{end}}