primevue-mirror/doc/checkbox/BasicDoc.vue

52 lines
1.1 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Binary checkbox is used as a controlled input with <i>v-model</i> and <i>binary</i> properties.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<Checkbox v-model="checked" :binary="true" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
checked: false,
code: {
2023-09-22 12:54:14 +00:00
basic: `
<Checkbox v-model="checked" :binary="true" />`,
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Checkbox v-model="checked" :binary="true" />
</div>
</template>
<script>
export default {
data() {
return {
checked: false
};
}
};
<\/script>`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Checkbox v-model="checked" :binary="true" />
</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);
<\/script>`
}
};
}
};
</script>