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

62 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>
<div class="card flex justify-center gap-2">
<Checkbox v-model="checked1" binary disabled />
<Checkbox v-model="checked2" binary disabled />
2023-02-28 08:29:30 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
checked1: false,
checked2: true,
2023-02-28 08:29:30 +00:00
code: {
2023-09-22 12:54:14 +00:00
basic: `
<Checkbox v-model="checked1" binary disabled />
<Checkbox v-model="checked2" binary disabled />
2023-10-15 06:00:52 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
<div class="card flex justify-center gap-2">
<Checkbox v-model="checked1" binary disabled />
<Checkbox v-model="checked2" binary disabled />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
export default {
data() {
return {
checked1: false,
checked2: true,
2023-02-28 08:29:30 +00:00
};
}
};
2023-10-15 06:00:52 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
<div class="card flex justify-center gap-2">
<Checkbox v-model="checked1" binary disabled />
<Checkbox v-model="checked2" binary disabled />
2023-02-28 08:29:30 +00:00
</div>
</template>
2023-03-09 18:41:01 +00:00
<script setup>
2023-02-28 08:29:30 +00:00
import { ref } from "vue";
const checked1 = ref(false);
const checked2 = ref(true);
2023-10-15 06:00:52 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>