booleanProp
Stability:
experimental
⚠️ Experimental feature, use at your riskConvert <Comp checked />
to <Comp :checked="true" />
.
Features | Supported |
---|---|
Vue 3 | ✅ |
Nuxt 3 | ✅ |
Vue 2 | ❌ |
Volar Plugin | ✅ |
Usage
vue
<template>
<Comp checked />
</template>
vue
<script setup lang="ts">
// Comp.vue
defineProps<{
checked?: any
}>()
</script>