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

55 lines
1.0 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Custom content inside the ProgressBar is defined with the <i>default</i> slot.</p>
</DocSectionText>
<div class="card">
<ProgressBar :value="value"> {{ value }}/100 </ProgressBar>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: 40,
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<ProgressBar :value="40"> {{ value }}/100 </ProgressBar>
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
<ProgressBar :value="40"> {{ value }}/100 </ProgressBar>
</div>
</template>
<script>
export default {
data() {
return {
value: 40
}
}
}
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 :value="40"> {{ value }}/100 </ProgressBar>
</div>
</template>
<script setup>
import { ref } from "vue";
const value = ref(40);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>