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

55 lines
1.0 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-10-30 11:18:22 +00:00
<p>Binary checkbox is used with the <i>v-model</i> for two-way value binding and the <i>binary</i> property.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-10-30 11:18:22 +00:00
<Checkbox v-model="checked" binary />
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: `
2024-10-30 11:18:22 +00:00
<Checkbox v-model="checked" binary />
2023-10-15 06:00:52 +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">
2024-10-30 11:18:22 +00:00
<Checkbox v-model="checked" binary />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
export default {
data() {
return {
checked: false
};
}
};
2023-10-15 06:00:52 +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">
2024-10-30 11:18:22 +00:00
<Checkbox v-model="checked" binary />
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 checked = ref(false);
2023-10-15 06:00:52 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>