1
0

aCustomStatistic.html 646 B

123456789101112131415161718192021222324252627282930
  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. <script>
  15. Vue.component('a-custom-statistic', {
  16. props: {
  17. 'title': {
  18. type: String,
  19. required: false,
  20. },
  21. 'value': {
  22. type: String,
  23. required: false
  24. }
  25. },
  26. template: `{{template "component/customStatistic"}}`,
  27. });
  28. </script>
  29. {{end}}