Skip to content

wt-load-bar.vue

Specs

Props

Name Required Types Default Description Example Deprecated
max number , string 100 Max load bar value
value number , string 0 Current load bar value
color string IconColor.PRIMARY Load bar color

Example Load Bar

Code
vue
<script setup></script>

<template>
  <wt-load-bar
    max="100"
    value="85"
  />
</template>

<style scoped lang="scss"></style>