primevue-mirror/apps/showcase/doc/rating/NumberOfStarsDoc.vue

55 lines
1006 B
Vue
Raw Permalink Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Number of stars to display is defined with <i>stars</i> property.</p>
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2023-02-28 08:29:30 +00:00
<Rating v-model="value" :stars="10" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
2024-04-09 07:55:12 +00:00
value: 5,
2023-02-28 08:29:30 +00:00
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<Rating v-model="value" :stars="10" />
`,
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
<Rating v-model="value" :stars="10" />
</div>
</template>
<script>
export default {
data() {
return {
2024-04-09 07:55:12 +00:00
value: 5
2023-02-28 08:29:30 +00:00
}
}
};
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
<Rating v-model="value" :stars="10" />
</div>
</template>
<script setup>
import { ref } from 'vue';
2024-04-09 07:55:12 +00:00
const value = ref(5);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>