34 lines
495 B
Vue
34 lines
495 B
Vue
<template>
|
|
<div class="demo-space-x">
|
|
<VProgressCircular
|
|
indeterminate
|
|
color="primary"
|
|
/>
|
|
|
|
<VProgressCircular
|
|
indeterminate
|
|
color="secondary"
|
|
/>
|
|
|
|
<VProgressCircular
|
|
indeterminate
|
|
color="success"
|
|
/>
|
|
|
|
<VProgressCircular
|
|
indeterminate
|
|
color="info"
|
|
/>
|
|
|
|
<VProgressCircular
|
|
indeterminate
|
|
color="warning"
|
|
/>
|
|
|
|
<VProgressCircular
|
|
indeterminate
|
|
color="error"
|
|
/>
|
|
</div>
|
|
</template>
|