Skip to content

legend

In this slot, you can put an additional element that you want to display beside the circle legend. This is simply a legacy slot from the time when the default slot did not exist yet. It can be helpful in some situations but is much less powerful.

Usage 📜

vue
<ve-progress :progress="50">
  <template #legend>
    <span>/150</span>
  </template>
</ve-progress>

Examples

vue
<ve-progress :progress="50">
  <template #legend>
    <span> / 100</span>
  </template>
</ve-progress>
<ve-progress :progress="50">
  <template #legend>
    <div> / 100</div>
  </template>
</ve-progress>

Released under the MIT License.