primevue-mirror/apps/labs/doc/checkbox/InvalidDoc.vue

32 lines
827 B
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>Invalid state is displayed using the <i>invalid</i> prop to indicate a failed validation. You can use this style when integrating with form validation libraries.</p>
</DocSectionText>
<div class="card flex justify-center">
<Checkbox v-model="checked" :invalid="!checked" binary />
</div>
<DocSectionCode :code="code" />
</template>
<script setup>
import Checkbox from '@/plex/checkbox';
import { ref } from 'vue';
const checked = ref(false);
const code = ref(`
<template>
<div class="card flex justify-center">
<Checkbox v-model="checked" :invalid="!checked" binary />
</div>
</template>
<script setup>
import Checkbox from '@/plex/checkbox';
import { ref } from 'vue';
const checked = ref(false);
<\/script>
`);
</script>