primevue-mirror/apps/showcase/doc/knob/BasicDoc.vue

55 lines
957 B
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>Knob is used with the <i>v-model</i> property for two-way value binding.</p>
</DocSectionText>
<div class="card flex justify-center">
<Knob v-model="value" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: 0,
code: {
basic: `
<Knob v-model="value" />
`,
options: `
<template>
<div class="card flex justify-center">
<Knob v-model="value" />
</div>
</template>
<script>
export default {
data() {
return {
value: 0
}
}
};
<\/script>
`,
composition: `
<template>
<div class="card flex justify-center">
<Knob v-model="value" />
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref(0);
<\/script>
`
}
};
}
};
</script>