primevue-mirror/doc/knob/ColorDoc.vue

58 lines
1.3 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>
<i>valueColor</i> defines the value color, <i>rangeColor</i> defines the range background and similarly <i>textColor</i> configures the color of the value text. In addition, <i>strokeWidth</i> is used to determine the width of the stroke
of range and value sections.
</p>
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2023-02-28 08:29:30 +00:00
<Knob v-model="value" valueColor="SlateGray" rangeColor="MediumTurquoise" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: 50,
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<Knob v-model="value" valueColor="SlateGray" rangeColor="MediumTurquoise" />
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2023-02-28 08:29:30 +00:00
<Knob v-model="value" valueColor="SlateGray" rangeColor="MediumTurquoise" />
</div>
</template>
<script>
export default {
data() {
return {
value: 50
}
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2023-02-28 08:29:30 +00:00
<Knob v-model="value" valueColor="SlateGray" rangeColor="MediumTurquoise" />
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref(50);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>