primevue-mirror/doc/knob/StepDoc.vue

52 lines
1.0 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Step factor is 1 by default and can be customized with <i>step</i> option.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<Knob v-model="value" :step="10" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: 40,
code: {
2023-09-22 12:54:14 +00:00
basic: `
<Knob v-model="value5" :step="10" />`,
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Knob v-model="value" :step="10" />
</div>
</template>
<script>
export default {
data() {
return {
value: 40
}
}
};
<\/script>`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Knob v-model="value" :step="10" />
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref(40);
<\/script>`
}
};
}
};
</script>