primevue-mirror/doc/knob/SizeDoc.vue

55 lines
1011 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Diameter of the knob is defined in pixels using the <i>size</i> property.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<Knob v-model="value" :size="200" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: 60,
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<Knob v-model="value" :size="200" />
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Knob v-model="value" :size="200" />
</div>
</template>
<script>
export default {
data() {
return {
value: 60
}
}
};
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 flex justify-content-center">
<Knob v-model="value" :size="200" />
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref(60);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>