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

55 lines
1.1 KiB
Vue
Raw Normal View History

2024-03-27 08:47:34 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>When <i>indeterminate</i> is present, the checkbox masks the actual value visually.</p>
2024-03-27 08:47:34 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-03-27 08:47:34 +00:00
<Checkbox v-model="checked" indeterminate binary />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
checked: false,
code: {
basic: `
<Checkbox v-model="checked" indeterminate binary />
`,
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-03-27 08:47:34 +00:00
<Checkbox v-model="checked" indeterminate binary />
</div>
</template>
<script>
export default {
data() {
return {
checked: false
};
}
};
<\/script>
`,
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-03-27 08:47:34 +00:00
<Checkbox v-model="checked" indeterminate binary />
</div>
</template>
<script setup>
import { ref } from "vue";
const checked = ref(false);
<\/script>
`
}
};
}
};
</script>