67 |
68 | {ctx.slots.title?.() || props.title}
69 |
70 |
71 | {props.prefix || ctx.slots.prefix?.() ? (
72 |
73 | {ctx.slots.prefix?.() || props.prefix}
74 |
75 | ) : null}
76 | {statisticValue.value}
77 | {props.suffix || ctx.slots.suffix?.() ? (
78 |
79 | {ctx.slots.suffix?.() || props.suffix}
80 |
81 | ) : null}
82 |
83 | {props.extra || ctx.slots.extra?.() ? (
84 |
88 | ) : null}
89 |
90 | )
91 | }
92 | }
93 | })
94 |
--------------------------------------------------------------------------------
/packages/vue/src/components/statistic/statistic.vue:
--------------------------------------------------------------------------------
1 |