22 lines
384 B
Vue
22 lines
384 B
Vue
<template>
|
|
<div class="demo-space-y">
|
|
<VProgressLinear
|
|
color="rgb(var(--v-theme-primary))"
|
|
model-value="75"
|
|
striped
|
|
/>
|
|
|
|
<VProgressLinear
|
|
color="rgb(var(--v-theme-success))"
|
|
model-value="55"
|
|
striped
|
|
/>
|
|
|
|
<VProgressLinear
|
|
color="rgb(var(--v-theme-warning))"
|
|
model-value="35"
|
|
striped
|
|
/>
|
|
</div>
|
|
</template>
|