mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
Fixed mobile tabmenu, add focus visuals, updated texts
This commit is contained in:
parent
a202f70356
commit
464bb0a96a
5 changed files with 31 additions and 19 deletions
|
@ -3,7 +3,7 @@
|
|||
<p>When <i>readOnly</i> present, value cannot be edited.</p>
|
||||
</DocSectionText>
|
||||
<div class="card flex justify-content-center">
|
||||
<Rating v-model="value" readonly />
|
||||
<Rating v-model="value" readonly :cancel="false" />
|
||||
</div>
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
@ -12,15 +12,15 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
value: 5,
|
||||
value: 3,
|
||||
code: {
|
||||
basic: `
|
||||
<Rating v-model="value" readonly />
|
||||
<Rating v-model="value" readonly :cancel="false" />
|
||||
`,
|
||||
options: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<Rating v-model="value" readonly />
|
||||
<Rating v-model="value" readonly :cancel="false" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -28,7 +28,7 @@ export default {
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
value: null
|
||||
value: 3
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -37,14 +37,14 @@ export default {
|
|||
composition: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<Rating v-model="value" readonly />
|
||||
<Rating v-model="value" readonly :cancel="false" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
|
||||
const value = ref(null);
|
||||
const value = ref(3);
|
||||
<\/script>
|
||||
`
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue