primevue-mirror/doc/progressbar/pt/PTDoc.vue

56 lines
1.1 KiB
Vue
Raw Normal View History

2023-04-21 13:36:24 +00:00
<template>
<DocSectionText v-bind="$attrs" :level="2" />
<div class="card">
<ProgressBar
:value="50"
:pt="{
value: { style: { background: 'linear-gradient(to right, #8e2de2, #4a00e0)' } }
}"
/>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
code: {
2023-09-22 12:54:14 +00:00
basic: `
<ProgressBar :value="50"
2023-04-21 13:36:24 +00:00
:pt="{
value: { style: { background: 'linear-gradient(to right, #8e2de2, #4a00e0)' } }
2023-10-15 09:38:39 +00:00
}" />
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-04-21 13:36:24 +00:00
<div class="card">
<ProgressBar :value="50"
:pt="{
value: { style: { background: 'linear-gradient(to right, #8e2de2, #4a00e0)' } }
}" />
</div>
</template>
<script>
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-04-21 13:36:24 +00:00
<div class="card">
<ProgressBar :value="50"
:pt="{
value: { style: { background: 'linear-gradient(to right, #8e2de2, #4a00e0)' } }
}" />
</div>
</template>
<script setup>
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-04-21 13:36:24 +00:00
}
};
}
};
</script>