55 lines
982 B
Vue
55 lines
982 B
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>When <i>readOnly</i> present, value cannot be edited.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center">
|
|
<Rating v-model="value" readonly />
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: 3,
|
|
code: {
|
|
basic: `
|
|
<Rating v-model="value" readonly />
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<Rating v-model="value" readonly />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: 3
|
|
}
|
|
}
|
|
};
|
|
<\/script>
|
|
`,
|
|
composition: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<Rating v-model="value" readonly />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
|
|
const value = ref(3);
|
|
<\/script>
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|