primevue-mirror/apps/showcase/doc/togglebutton/DisabledDoc.vue

58 lines
1.4 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>When <i>disabled</i> is present, the element cannot be edited and focused.</p>
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
<ToggleButton v-model="checked" disabled onIcon="pi pi-check" offIcon="pi pi-times" class="w-full sm:w-40" aria-label="Confirmation" />
2023-02-28 08:29:30 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
checked: false,
code: {
2023-09-22 12:54:14 +00:00
basic: `
<ToggleButton v-model="checked" disabled onIcon="pi pi-check" offIcon="pi pi-times"
2024-05-20 12:14:38 +00:00
class="w-full sm:w-40" aria-label="Confirmation" />
2023-10-15 09:38:39 +00:00
`,
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
<ToggleButton v-model="checked" disabled onIcon="pi pi-check" offIcon="pi pi-times"
2024-05-20 12:14:38 +00:00
class="w-full sm:w-40" aria-label="Confirmation" />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
export default {
data() {
return {
checked: false
}
}
};
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
<ToggleButton v-model="checked" disabled onIcon="pi pi-check" offIcon="pi pi-times"
2024-05-20 12:14:38 +00:00
class="w-full sm:w-40" aria-label="Confirmation" />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script setup>
import { ref } from 'vue';
const checked = ref(false);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>