primevue-mirror/apps/showcase/doc/progressbar/IndeterminateDoc.vue

46 lines
936 B
Vue
Raw Permalink Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>For progresses with no value to track, set the <i>mode</i> property to <i>indeterminate</i>.</p>
</DocSectionText>
<div class="card">
<ProgressBar mode="indeterminate" style="height: 6px"></ProgressBar>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<ProgressBar mode="indeterminate" style="height: 6px"></ProgressBar>
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
<ProgressBar mode="indeterminate" style="height: 6px"></ProgressBar>
</div>
</template>
<script>
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
<ProgressBar mode="indeterminate" style="height: 6px"></ProgressBar>
</div>
</template>
<script setup>
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>