Fixed mobile tabmenu, add focus visuals, updated texts

This commit is contained in:
Cagatay Civici 2023-10-21 13:24:27 +03:00
parent a202f70356
commit 464bb0a96a
5 changed files with 31 additions and 19 deletions

View file

@ -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>
`
}