Skip to content

booleanProp

Stability: experimental ⚠️ Experimental feature, use at your risk

Convert <Comp checked /> to <Comp :checked="true" />.

FeaturesSupported
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>